Created
February 11, 2010 23:04
-
-
Save DarthFubuMVC/302084 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jeremy, this is for your benefit. I wanted to follow Josh's advice with that patch that Peter just sent in. | |
Here was my workflow: | |
- git pull (make sure I'm up to date) | |
- git checkout -b monospark (make a branch to work in) | |
- *copy the patch file into my working dir* | |
- git apply patch.txt | |
- del patch.txt | |
- rake | |
- *open browser, make sure everything is kosher* | |
- git commit -a -m "blah blah" | |
- git checkout master (switch back to master) | |
- git pull (make sure I'm still up to date) | |
- git checkout monospark | |
- git rebase origin (rebase my branch against master to avoid a full merge) | |
- git checkout master | |
- git merge monospark (merge my branch back into master -- fast-forward quicklike) | |
- git push (fin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In SVN: | |
- svn update | |
- copy the patch | |
- svn apply.. (or something, I forget the syntax) | |
- del patch | |
- rake | |
- (smoke test) | |
- svn update (do merge) | |
- svn commit... | |
Done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment