setup-cockpit/roles/git/templates/gitconfig.j2
2023-09-29 14:12:14 +02:00

24 lines
726 B
Django/Jinja

[user]
name = {{ username }}
email = {{ useremail }}
[pull]
rebase = true
[alias]
br = branch
ci = commit
cia = commit --amend
co = checkout
cp = cherry-pick
st = status
l = log -10 --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue%an <%ae>%Creset'
ll = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue%an <%ae>%Creset'
logadog = log --all --decorate --oneline --graph
chlog = log --no-merges --oneline --stat @{1}..
d = diff
ds = diff --staged
dw = diff --word-diff=color
dws = diff --word-diff=color --staged
[diff]
tool = vimdiff
[init]
defaultBranch = main