Queer European MD passionate about IT

merge_and_push.sh 192 B

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