dotfiles/files/.gitconfig

16 lines
367 B
INI
Raw Normal View History

2016-09-24 22:09:18 +02:00
[core]
excludesfile = ~/.gitignore
2017-03-24 20:50:43 +01:00
editor = "vim '+normal gg0' +startinsert"
2016-09-24 22:09:18 +02:00
[user]
email = contact@tobast.fr
name = Théophile Bastian
signingkey = 7B784C5D
[push]
default = simple
[pull]
rebase = true
[alias]
publish = !sh -c 'BRANCH=$(git symbolic-ref --short HEAD) && \
git fetch . $BRANCH:master'
pushblish = !git publish && git push origin master