push_changes.txt 266 B

123456789101112131415
  1. # when the git tag was created by the web-frontend, you have to do:
  2. git fetch --tags
  3. # push changes with tag
  4. SET TAG=66.2
  5. git tag %TAG%
  6. git push origin %TAG%
  7. git push github %TAG%
  8. git push gitlab %TAG%
  9. # normal push
  10. git push origin
  11. git push github
  12. git push gitlab