...
As an example here is a git tag command - git tag -a v1.4 -m “some message”
Use this batch script to do the heavy lifting
Code Block | ||
---|---|---|
| ||
git add .
git commit -m %2
git tag -a %1 -m %2
git push origin master
git push origin %1 |
...
As an example here is a git tag command - git tag -a v1.4 -m “some message”
Code Block | ||
---|---|---|
| ||
git add .
git commit -m %2
git tag -a %1 -m %2
git push origin master
git push origin %1 |