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] | |
br = branch | |
co = checkout | |
cp = cherry-pick | |
dd = diff develop | |
dm = diff main | |
st = status | |
bn = symbolic-ref --short HEAD | |
amend = commit -a --amend | |
up = !clear && git fetch && git whatchanged --stat --pretty=format:'%Cred%h%Creset %C(bold blue)[%an]%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)' --date=relative ..origin |
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
[core] | |
legacyheaders = false # >git 1.5 | |
quotepath = false | |
pager = less -r | |
[color] | |
ui = auto | |
interactive = auto | |
[alias] | |
s = status | |
br = branch |