Queer European MD passionate about IT

merge_and_push.sh 227 B

123456789
  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;