vote up 1 vote down star
1

The scenario is following:

  • my team member is modifying the templates for a website we are working on
  • he is adding some images to the images directory (but forgets to add them under source control)
  • he is sending later the images by mail to me
  • i'm adding the images under the source control and push them to github together with other changes
  • he cannot pull updates from github because git doesn't want to overwrite his files.

the erros i'm getting are:

error: Untracked working tree file 'public/images/icon.gif' would be overwritten by merge.

How to force git to overwrite them? The guy is designer - usually i resolve all the conflicts by hand so on the server is the most recent version that he just need to update on his computer.

flag

1 Answer

vote up 4 vote down check

It looks like the best way is to first do:

git clean

To delete all untracked files and then continue with usual git pull....

link|flag
I tried using "git clean" to solve the same issue, but it did not resolve it. git status says "Your branch and 'origin/master' have diverged, # and have 2 and 9 different commit(s) each, respectively." and git pull says something similar to what you have above. – slacy Sep 24 at 4:25

Your Answer

Get an OpenID
or

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