git config --global user.name "Your name"
git config user.name "Your name"
git config --global user.email "user@example.com"
git config --global color.ui true
git config --global alias.st status
- git st will work as git status from now
git config --list
git config -l
- show all config at this file location
git config --global core.editor vim
- open editor Vim when Git ask you to input messages
git stash & git stash save
git stash save --include-untracked
git branch -d [branch name]
git branch -D [branch name]
git tag -a [v1.0.0] -m 'version message'