Changes between Version 2 and Version 3 of MergerTips
- Timestamp:
- Jul 25, 2013, 8:56:05 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MergerTips
v2 v3 61 61 62 62 [https://gist.github.com/aaugustin/1170400 djpatch.py] will automatically look for the latest patch attached to a ticket, or failing that, for the latest pull request mentioned in the comment, and apply it to your local checkout. 63 64 == Keeping all current upstream branches current locally == 65 66 {{{ 67 #!/bin/bash 68 git fetch upstream && \ 69 git co stable/1.6.x && git merge --ff-only upstream/stable/1.6.x && \ 70 git co stable/1.5.x && git merge --ff-only upstream/stable/1.5.x && \ 71 git co master && git merge --ff-only upstream/master 72 }}}