From 19cd6a1c164c4fbfca04955d4c4b88e45209d6cf Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 25 Jan 2020 16:02:28 +0100 Subject: gitconfig: Add git tag alias Signed-off-by: Florian Pritz --- .gitconfig | 1 + 1 file changed, 1 insertion(+) (limited to '.gitconfig') diff --git a/.gitconfig b/.gitconfig index a1b7c93..549385d 100644 --- a/.gitconfig +++ b/.gitconfig @@ -30,6 +30,7 @@ fa = fetch -p --all up = pull --rebase sed = ! git grep -z --full-name -l '.' | xargs -0 sed -i -e + t = "!t() { git tag -a \"$1\" -m \"tagging release of $1\"; }; t" [merge] tool = kdiff3 conflictstyle = diff3 -- cgit v1.2.3-24-g4f1b