git config --global --edit
[user]
name = your name here
email = [email protected]
[core]
editor = code --wait
[alias]
c = !git add --all && git commit -m
s = !git status -s
l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white)%s - %C(cyan)%cn, %C(green)%cr'
amend = !git add --all && git commit --amend --no-edit
count = !git shortlog -s --grep
edit-commit = !git rebase --interactive
new-b = !git checkout -b
push-cb = !git push origin `git rev-parse --abbrev-ref HEAD`