Reputation: 31
I'm working on a project and a co-worker modified some files that I modified too, the problem is that I was versioning using GIT and he was not, so the files modified by this person were never commited to the project repository, he just sent them by email.
Is there a way to merge these files using a GIT merge tool?
Upvotes: 0
Views: 525
Reputation: 18783
Upvotes: 3
Reputation: 393064
There is nothing to merge if only one side ever had the files. Just add them to the branch of your choice
git add file1 file2 file3
and commit
git commit -m 'merged the missing files'
Upvotes: 0