From 431862c5e20452244667c5c8ed3f8b23a287ae2f Mon Sep 17 00:00:00 2001 From: Vladimir Vitkov Date: Mon, 10 Oct 2022 10:13:59 +0300 Subject: [PATCH] add gitconfig --- root/.gitconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 root/.gitconfig diff --git a/root/.gitconfig b/root/.gitconfig new file mode 100644 index 0000000..51a1e11 --- /dev/null +++ b/root/.gitconfig @@ -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 ' + rpci = commit --author='robotpanic '