Last active
April 30, 2019 17:10
-
-
Save karussell/4171590 to your computer and use it in GitHub Desktop.
Preview git merge
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
This is a lot easier: https://gist.github.com/piscisaureus/3342247 | |
Step 1: Check out a new branch to test the changes — run this from your project directory | |
git checkout -b dajac-jsoup-1.7.1 master | |
Step 2: Bring in dajac's changes and test ('jsoup-1.7.1' acts as commit message) | |
git pull https://github.com/dajac/snacktory.git jsoup-1.7.1 | |
Step 3: Merge the changes and update the server | |
git checkout master | |
git merge dajac-jsoup-1.7.1 | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is super helpful! Thanks!
For reference, how would you preview a git squash and merge?