I have a project in a Git repo and I have been sent changes that have been made outside of Git. These changes are based on an earlier version that I have been making changes to myself. What is the best way to merge these external files with mine?

Many thanks!

link|improve this question
1  
In what format were these changes sent to you? A diff file? – Chris Apr 27 '11 at 21:27
feedback

3 Answers

up vote 4 down vote accepted

The best way is to tell git what commit they were based off of, to give you the best chance of an automatic merge.

  1. git checkout <sha1 of the old commit> -b mybranch, to rewind your work tree and start a new branch.
  2. If the changes were sent as a diff, use git-apply to apply them to the work tree, otherwise just put the updated files in.
  3. Add and commit the files.
  4. git checkout master, then git merge mybranch.
link|improve this answer
Thanks a bunch, this sounds like what I want. Cheers! – GitNub Apr 28 '11 at 2:03
feedback

You'll want to act exactly as if you were working with these files, so commit them from the state of the earlier version you're talking about:

  1. Create a branch at the commit you believe to be the base of the modified file
  2. Add the modified file
  3. Commit
  4. Merge back the branch to your main development branch
link|improve this answer
feedback

the best way would be for person who provided the changes to give a patch instead of files. But if it is not possible, that other person is not Version Control aware or something else, you could try commit all your outstanding changes in the branch you're currently working on. Preferrably try to avoid any untracked files as well. Then copy over those files into the git repo and run git status and you will see what are the changes comparing to the state of your repo, and then you can decide what you will do with them

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.