Skip to content

Instantly share code, notes, and snippets.

@kljensen
Last active October 31, 2015 14:16
Show Gist options
  • Select an option

  • Save kljensen/6f923e944b9d3d5cf5ca to your computer and use it in GitHub Desktop.

Select an option

Save kljensen/6f923e944b9d3d5cf5ca to your computer and use it in GitHub Desktop.
How to pull in test changes
# 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