Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagepowershell
git add .
git commit -m %2
git tag -a %1 -m %2
git push origin master
git push origin %1