- configure vscode as default editor
- add user informations
- add --wait flag to open editor
- add follow tags automatically in push operations
- add alias with formated code to git status
- add alias git add && commit
- add alias to git log with reduce informations
git config --global core.editor code
git config --global --edit
# This is Git's per-user configuration file.
[user]
name = massaaki
email = eu@massaaki.com
# Please adapt and uncomment the following lines:
# name = Mauricio Yochizumi
# email = massaaki@Mauricios-MacBook-Pro.local
[core]
editor = code --wait
[push]
followTags = true
[alias]
s = !git status -s
c = !git add --all && git commit -m
l = !git log --pretty=format:'%C(blue)%h %C(red)%d %C(white)%s - %C(cyan)%cn, %C(green)%cr'
git c "commit-message"
git l
git s

