Helpful Git aliases

As many of you know, with Git aliases, you can avoid typing the same commands over and over again, by adding the aliases to the [alias] section of your .gitconfig file.

Aliases can be very helpful and time saving. What Git aliases are helpful for you when working with OpenMRS code? Add them to this topic!

Here are some to get things started: http://durdn.com/blog/2012/11/22/must-have-git-aliases-advanced-examples/

2 Likes

up = pull --rebase

Usage: git up upstream master

1 Like