Skip to content

Instantly share code, notes, and snippets.

@veob
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veob/d92d6715d346006631bc to your computer and use it in GitHub Desktop.
Save veob/d92d6715d346006631bc to your computer and use it in GitHub Desktop.
TJ's bash aliases for git
alias gd="git diff"
alias ga="git add"
alias gbd="git branch -D"
alias gst="git status"
alias gca="git commit -a -m"
alias gm="git merge --no-ff"
alias gpt="git push --tags"
alias gp="git push"
alias grh="git reset --hard"
alias gb="git branch"
alias gcob="git checkout -b"
alias gco="git checkout"
alias gba="git branch -a"
alias gcp="git cherry-pick"
alias gl="git log --pretty='format:%Cgreen%h%Creset %an - %s' --graph"
alias gpom="git pull origin master"
alias gcd='cd "`git rev-parse --show-toplevel`"'
@veob
Copy link
Author

veob commented Aug 9, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment