Skip to content

Commit 7ce75d5

Browse files
Update
1 parent ab834d9 commit 7ce75d5

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

git-commit.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ git add -A
33
set /p msg="Git message: "
44
echo "Git status:"
55
git status
6+
git fetch
67
git commit -m %msg%
78
set /p tag="Git tag: "
89
git tag %tag%
910
echo "Git push..."
11+
git push
1012
git push --tag
1113
echo "Done."

0 commit comments

Comments
 (0)