I am fairly new to Git/GitHUB and I hired a programmer to make changes for me.

When I look under network/Fork Queue a number of his changes say "Will likely not apply cleanly".

What does this mean? Why wouldn't they apply 'cleanly'? Is it his code, my repo??

How can I apply these changes cleanly? I don't want to use the Apply option in the queue because of those errors.

Thanks!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

"Will likely not apply cleanly" usually means that there will be merge conflict. In your repo, there were some changes to the same files that he was working on, so his changes can't be applied cleanly to yours. Your two repositories have diverged and the conflicting changes need to be resolved.

There are three things you can do:

1.) Try using a Pull Request, but it will probably say the same thing about not applying cleanly

2.) Merge them yourself on the command line:

$ git remote add hisusername git@github.com:hisusername/hisfork
$ git fetch hisusername
$ git merge hisusername/hisbranchname
...at this point there will probably be a merge conflict, which you need to resolve...
$ git push

3.) Ask him to rebase his changes on top of your latest changes, so they will apply cleanly. He will have to resolve the conflict.

link|improve this answer
I made no changes to the repo since he forked it, is there something else that would cause it? If his fork is the same name as my repo, will that cause issues? – Kraynium Jan 11 at 4:17
@Kray-Z The name of the repo doesn't have any effect. Only something in the commit history would cause that message to show. Try looking at the Network Graph to see any commits in your repo that aren't in his repo. Or just try doing the merge and see what happens. The "Will not apply cleanly" is a guess on Github's side, you won't actually know for sure until the merge is attempted. Also, are you both on the same branch? – lost-theory Jan 11 at 23:24
Thanks @lost-theory. I am pretty sure it's the same branch, I will have to take a look when I fulfill the pull request. – Kraynium Jan 12 at 23:51
feedback

Your Answer

 
or
required, but never shown

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