Configure git for per-project identities
This commit is contained in:
parent
104c845ebb
commit
ee8f0ac2fe
1 changed files with 12 additions and 4 deletions
12
gitconfig
12
gitconfig
|
@ -1,6 +1,9 @@
|
||||||
# vim: set filetype=gitconfig :miv #
|
# vim: set filetype=gitconfig :miv #
|
||||||
[core]
|
[core]
|
||||||
editor = vim -f
|
editor = vim -f
|
||||||
|
[commit]
|
||||||
|
# Sign commits by default
|
||||||
|
gpgSign = true
|
||||||
[diff]
|
[diff]
|
||||||
tool = vimdiff
|
tool = vimdiff
|
||||||
guitool = gvimdiff
|
guitool = gvimdiff
|
||||||
|
@ -15,5 +18,10 @@
|
||||||
head = log -1 --show-signature --format=fuller
|
head = log -1 --show-signature --format=fuller
|
||||||
adog = log --all --decorate --oneline --graph
|
adog = log --all --decorate --oneline --graph
|
||||||
dog = log --decorate --oneline --graph
|
dog = log --decorate --oneline --graph
|
||||||
[commit]
|
identity = "! git config user.name \"$(git config user.$1.name)\"; git config user.email \"$(git config user.$1.email)\"; :"
|
||||||
gpgSign = true
|
[user]
|
||||||
|
useConfigOnly = true
|
||||||
|
[user "darkwiiplayer"]
|
||||||
|
# Public identity for Github & co.
|
||||||
|
name = DarkWiiPlayer
|
||||||
|
email = darkwiiplayer@hotmail.com
|
||||||
|
|
Loading…
Reference in a new issue