dotfiles/playbooks/roles/git/templates/gitconfig.j2
Matej Focko fbba2fa1c9
feat(git): Add autoStash to rebase
Signed-off-by: Matej Focko <mfocko@redhat.com>
2021-08-29 16:10:25 +02:00

32 lines
433 B
Django/Jinja

[alias]
scommit = commit --signoff
[commit]
gpgsign = true
[core]
editor = code --wait
excludesfile = ~/.gitignore
[diff]
tool = vscode-difftool
[difftool "vscode-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
[gpg]
program = gpg2
[init]
defaultBranch = main
[pull]
rebase = true
[rebase]
autoStash = true
[user]
name = Matej Focko
email = {{ git_email }}
signingkey = {{ gpg_signingkey }}