Created
June 28, 2013 20:03
-
-
Save sauron/5887643 to your computer and use it in GitHub Desktop.
Git aliases and coloring things
This file contains hidden or 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] | |
up = pull --rebase origin | |
br = branch | |
st = status | |
ci = commit | |
co = checkout | |
ql = log --abbrev-commit --pretty=oneline | |
qlr = log --reverse --abbrev-commit --pretty=oneline | |
pending = log --reverse --abbrev-commit --pretty=oneline master --cherry-pick master... | |
undo = reset --soft HEAD^ | |
pick = cherry-pick | |
[push] | |
default = current | |
[color "diff"] | |
plain = normal | |
meta = bold | |
frag = cyan | |
old = red | |
new = green | |
commit = yellow | |
whitespace = normal red | |
[color "branch"] | |
current = green | |
local = normal | |
remote = red | |
plain = normal | |
[color "status"] | |
header = normal | |
added = red | |
updated = green | |
changed = red | |
untracked = red | |
nobranch = red | |
[color "grep"] | |
match = normal | |
[color "interactive"] | |
prompt = normal | |
header = normal | |
help = normal | |
error = normal | |
[merge] | |
tool = opendiff | |
[color] | |
ui = auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment