Skip to content

Commit

Permalink
added git aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Lloyd committed Jan 8, 2011
1 parent cb56fa2 commit 57d3714
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .bash_aliases
Expand Up @@ -26,6 +26,11 @@ alias bat='acpi'

# Git
alias gits='git status'
alias gitb='git branch'
alias gitc='git commit'
alias gitl='git lg'
alias gitch='git checkout'
alias gitd='git diff'
alias pushall='for i in `git remote`; do git push $i; done;'
alias pullall='for i in `git remote`; do git pull $i; done;'
alias gitgrab='git clone'
Expand Down

0 comments on commit 57d3714

Please sign in to comment.