Created
April 11, 2018 06:24
-
-
Save ljvicente/956917489842e23ebe9f19e1fe9b3baa to your computer and use it in GitHub Desktop.
Git shortcut aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias Ga='git add' | |
| alias Gs='git status' | |
| alias Gc='git commit' | |
| alias Gca='git commit -am ' | |
| alias Gh='git push' | |
| alias Gf='git fetch' | |
| alias Gl='git pull' | |
| alias Gm='git merge' | |
| alias Go='git checkout' | |
| alias Gb='git branch && git branch -r' | |
| alias Gg='git log --graph' | |
| alias Gd='git diff -w' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment