summaryrefslogtreecommitdiff
path: root/maketag.sh
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-25 12:39:47 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-25 12:39:47 -0400
commit65fc2615800fd4db985bb3fc07b5da8c52e33dec (patch)
tree4d4c34a46222bb3cf29779618a0e0bf4219c92df /maketag.sh
parent9006a2d713279f4b624df2d94055a591112b055b (diff)
parent5e75a4a4326c3d9e67041ccc133bf7397144f262 (diff)
commit conflicts resolve
Diffstat (limited to 'maketag.sh')
-rwxr-xr-xmaketag.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/maketag.sh b/maketag.sh
new file mode 100755
index 00000000..62bd55b5
--- /dev/null
+++ b/maketag.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+read -p "Please generate CHANGELOG and commit it BEFORE you tag. Press a key when ready..."
+orig=$1
+VER="${orig/v//}"
+echo "Creating tag:v$VER"
+read -p "Press any key to create the tag or Ctrl-C to break..." -n1
+git tag -fa v$VER -m"v$VER"
+git push -f --tags