You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
510 B
20 lines
510 B
## |
|
## gitconfig -- global Git configuration |
|
## |
|
|
|
[alias] |
|
ci = commit |
|
co = checkout |
|
st = status |
|
stat = status |
|
amend = commit -a --amend |
|
backout = checkout -f |
|
restart = reset HEAD --hard |
|
sync = !git fetch --prune && git push --follow-tags |
|
up = !git pull --rebase --prune $@ && git submodule update --init --recursive |
|
|
|
[color "diff"] |
|
old = red |
|
new = blue |
|
whitespace = yellow reverse |
|
|
|
|