Skip to content

Instantly share code, notes, and snippets.

@marc1706
Last active June 17, 2019 08:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marc1706/2c26a1bfcae0dc2da6f98403013319f0 to your computer and use it in GitHub Desktop.
Save marc1706/2c26a1bfcae0dc2da6f98403013319f0 to your computer and use it in GitHub Desktop.
Bash scripts for merging and pushing GitHub pull requests for phpBB
#!/bin/bash
set -e
PR=$1
git checkout 3.2.x && git fetch upstream && git fetch origin && git reset --hard upstream/3.2.x && hub merge $1 && git push origin 3.2.x
git checkout 3.3.x && git reset --hard upstream/3.3.x && git merge --no-ff --no-edit 3.2.x && git push origin 3.3.x
git checkout master && git reset --hard upstream/master && git merge --no-ff --no-edit 3.3.x && git push origin master
#!/bin/bash
set -e
PR=$1
git checkout 3.3.x && git fetch upstream && git fetch origin && git reset --hard upstream/3.3.x && hub merge $1 && git push origin 3.3.x
git checkout master && git reset --hard upstream/master && git merge --no-ff --no-edit 3.3.x && git push origin master
#!/bin/bash
set -e
PR=$1
git checkout master && git fetch upstream && git fetch origin && git reset --hard upstream/master && hub merge $1 && git push origin master
#!/bin/bash
set -e
git push upstream 3.2.x && sleep 5 && git push upstream 3.3.x && sleep 5 && git push upstream master
#!/bin/bash
set -e
git push upstream 3.3.x && sleep 5 && git push upstream master
#!/bin/bash
set -e
git push upstream master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment