gitconfig: fix indentation

This commit is contained in:
Théophile Bastian 2017-05-22 11:53:27 +02:00
parent b28e6e5620
commit 51863e52fd
1 changed files with 12 additions and 12 deletions

View File

@ -1,19 +1,19 @@
[core]
excludesfile = ~/.gitignore
excludesfile = ~/.gitignore
editor = "vim '+normal gg0' +startinsert"
[user]
email = contact@tobast.fr
name = Théophile Bastian
signingkey = 7B784C5D
email = contact@tobast.fr
name = Théophile Bastian
signingkey = 7B784C5D
[push]
default = simple
default = simple
[pull]
rebase = true
rebase = true
[alias]
publish = !sh -c 'BRANCH=$(git symbolic-ref --short HEAD) && \
git fetch . $BRANCH:master'
pushblish = !git publish && git push origin master
update-with-master = !sh -c 'BRANCH=$(git symbolic-ref --short HEAD) && \
git checkout master && git pull -r && git checkout "$BRANCH" && \
git rebase master'
publish = !sh -c 'BRANCH=$(git symbolic-ref --short HEAD) && \
git fetch . $BRANCH:master'
pushblish = !git publish && git push origin master
update-with-master = !sh -c 'BRANCH=$(git symbolic-ref --short HEAD) && \
git checkout master && git pull -r && git checkout "$BRANCH" && \
git rebase master'
graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all