Last active
October 31, 2015 14:16
-
-
Save kljensen/6f923e944b9d3d5cf5ca to your computer and use it in GitHub Desktop.
How to pull in test changes
This file contains hidden or 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
| # Make sure you have some remote that points to https://github.com/yale-mgt-656/mgt656-spring-2015-project | |
| # Here, we'll call it Kyle | |
| git remote add kyle https://github.com/yale-mgt-656/mgt656-spring-2015-project | |
| # Fetch changes | |
| git fetch kyle | |
| # Now, you could merge those, or rebase on top of them. | |
| git merge kyle/master | |
| # If you're advanced, you might prefer to rebase instead: | |
| # https://www.atlassian.com/git/tutorials/merging-vs-rebasing/the-golden-rule-of-rebasing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment