We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d146cf commit aa80432Copy full SHA for aa80432
git-commit.bat
@@ -0,0 +1,8 @@
1
+@echo off
2
+git add -A
3
+set /p msg="Git message: "
4
+git fetch
5
+git commit -m %msg%
6
+echo "Git push..."
7
+git push
8
+echo "Done."
git-tag.bat
@@ -3,9 +3,11 @@ git add -A
set /p msg="Git message: "
echo "Git status:"
git status
git commit -m %msg%
set /p tag="Git tag: "
9
git tag %tag%
10
echo "Git push..."
11
12
git push --tag
13
echo "Done."
0 commit comments