Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to use shortcuts or aliases for git commands.

git diff
git status
git push 
git pull
git stash
git branch -a

How do I create shortcuts or aliases, is there a predefined list?

share|improve this question

3 Answers

up vote 2 down vote accepted

Put this into your .gitconfig

[alias]
  st = status
  ci = commit
  br = branch
  co = checkout

You can add as much as you want

share|improve this answer
Is there a list of the most commonly used ones somewhere? – Sam Feb 7 at 15:05
It is up to you. You can alias your favourite git commands or the ones that you use frequently – ogzd Feb 7 at 15:06
git config --global alias.<short> <long>

e.g.

git config --global alias.cob checkout -b

(Without --global, you get per-project aliases.)

share|improve this answer

You can also add them to your .bashrc to type even less.

See http://ozmm.org/posts/git_bash_aliases.html for an example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.