push_changes.txt 418 B

1234567891011121314151617181920212223242526
  1. # when the git tag was created by the web-frontend, you have to do:
  2. git fetch --tags
  3. # release new version
  4. - edit NEWS
  5. - edit gradle.build
  6. - add tags
  7. # push changes with tag
  8. SET TAG=67.4
  9. git tag %TAG%
  10. git push origin %TAG%
  11. git push github %TAG%
  12. git push gitlab %TAG%
  13. TAG=67.1
  14. git tag $TAG
  15. git push origin $TAG
  16. git push github $TAG
  17. git push gitlab $TAG
  18. # normal push
  19. git push origin
  20. git push github
  21. git push gitlab