Queer European MD passionate about IT

merge_and_push.sh 251 B

12345678910
  1. #!/bin/bash
  2. # Merge develop into master and push both branches; checkout to develop at the end.
  3. git checkout master;
  4. git merge develop;
  5. git checkout develop;
  6. git push origin master develop;
  7. git push bitbucket master develop;
  8. git push github master;