Last active
October 2, 2015 18:45
-
-
Save zouzias/036a3b9e8021520b6bee to your computer and use it in GitHub Desktop.
My git 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
# Add the following to your ~/.bashrc or ~/.profile file | |
alias ga='git add ' | |
alias gb='git branch ' | |
alias gc='git commit' | |
alias gd='git diff' | |
alias go='git checkout ' | |
alias gk='gitk --all&' | |
alias gx='gitx --all' | |
alias gs="git status " | |
alias gl="git log --oneline --decorate --color --graph " | |
alias gd="git diff " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment