Created
April 12, 2013 19:46
-
-
Save tcotav/5374588 to your computer and use it in GitHub Desktop.
gitconfig aliases
This file contains 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
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
df = diff | |
lg = log -p | |
tree = log --graph --decorate --pretty=oneline --abbrev-commit | |
lol = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%cr)%C(reset) %C(white)%s%C(reset) %C(bold white)— %cn%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative | |
unstage = reset HEAD -- | |
last = log -1 HEAD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment