216 | | # With git log, identify the sha1sum of the commit you want to backport (example: into releasebranch_7_6) |
| 217 | |
| 218 | # update master to fetch the commit to be backported |
| 219 | git fetch --all --prune |
| 220 | |
| 221 | # Note: only needed if you have your fork as "origin" (see above) |
| 222 | # update local repo |
| 223 | ## NO git pull origin releasebranch_7_6 --rebase |
| 224 | # merge updates into local master |
| 225 | git merge upstream/releasebranch_7_6 |
| 226 | # at this point we have reached: |
| 227 | # (HEAD -> master, upstream/releasebranch_7_6, releasebranch_7_6) |
| 228 | |
| 229 | # ??? update own remote |
| 230 | git push origin releasebranch_7_6 |
| 231 | |
| 232 | # ??? With git log, identify the sha1sum of the commit you want to backport (example: backport into releasebranch_7_6) |