push changes and then tags (like we used to do for svn)
[build.git] / module-tools.py
index e833cd9..3cc35c2 100755 (executable)
@@ -309,6 +309,7 @@ class GitRepository:
     def commit(self, logfile):
         self.__run_command_in_repo("git add -A", ignore_errors=True)
         self.__run_command_in_repo("git commit -F  %s" % logfile, ignore_errors=True)
+        self.__run_command_in_repo("git push")
         self.__run_command_in_repo("git push --tags")
 
     def revert(self):