add gitconfig

This commit is contained in:
Vladimir Vitkov 2022-10-10 10:13:59 +03:00 committed by OpenFest Server User
parent 5a40d54eee
commit 431862c5e2
1 changed files with 13 additions and 0 deletions

13
root/.gitconfig Normal file
View File

@ -0,0 +1,13 @@
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = "OpenFest Server User"
email = core@openfest.org
[alias]
co = checkout
ci = commit
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
synctags = "!if [ $(git remote show | wc -l) -gt 1 ] ; then for r in $(git remote show) ; do echo \"Fetching $r ...\" ; git fetch $r ; done && git push --tags origin; fi"
vvci = commit --author='Vladimir Vitkov <vvitkov@gmail.com>'
rpci = commit --author='robotpanic <kalin.t.iliev@gmail.com>'