From 871ccba3041334e434d340c52ce214608f591da5 Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Wed, 7 Apr 2021 15:29:21 +0200 Subject: [PATCH] add gitconfig --- dot_gitconfig.tmpl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dot_gitconfig.tmpl diff --git a/dot_gitconfig.tmpl b/dot_gitconfig.tmpl new file mode 100644 index 0000000..e39cab8 --- /dev/null +++ b/dot_gitconfig.tmpl @@ -0,0 +1,19 @@ +[user] + email = {{ .git_email }} + name = {{ .git_alias }} +[pull] + rebase = false +[alias] + a = add + c = commit + cd = checkout develop + cl = clone + cm = checkout master + co = checkout + cp = cherry-pick + fo = fetch origin + m = merge + nb = checkout -b + p = push -u origin + pu = pull + s = status