How do I force an overwrite of local files on a git pull?

The scenario is following:

  • a 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 errors I'm getting are:

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

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

link|improve this question

66% accept rate
Do you need to keep local untracked files that aren't in the server? Or do you need the local files to stay if they are newer than on the server? (These two seems like I need, and below answers seem to imply killing off all untracked files.) – Simon B. Jul 9 '10 at 11:38
Why not backup the files and then pull? – ClassicThunder Apr 11 at 20:39
feedback

16 Answers

Try this:

git reset --hard HEAD
git pull

Should do what you want.

link|improve this answer
2  
I've done this and some local files that were no longer in repo were left on the disk. – Piotr Owsiak Apr 8 '11 at 16:00
3  
I do not think that this is correct. the above will perform a merge, not overwrite which was requested in the question: "How to force git to overwrite them?" I do not have the answer, I am currently looking for it.. at the moment I switch to the branch with with the code that I want to keep "git checkout BranchWithCodeToKeep", then do "git branch -D BranchToOverwrite" and then finally "git checkout -b BranchToOverwrite". you will now have the exact code from BranchWithCodeToKeep on the branch BranchToOverwrite without having to perform a merge. – Felbus Jul 13 '11 at 10:11
8  
instead of merging using 'git pull', try git fetch --all followed by 'git reset --hard origin/master' – Lloyd Moore Feb 21 at 14:56
@LloydMoore you sir are awesome! Came across this Q looking for exactly what the OP was asking for and your command has precisely the desired effect. – Endophage Apr 24 at 5:40
Thank you! This should be the accepted answer. – ajkochanowicz May 13 at 22:28
show 1 more comment
feedback

Sometimes just clean -f does not help. In case you have untracked DIRECTORIES, -d option also needed:

git reset --hard HEAD
git clean -f -d
git pull
link|improve this answer
52  
This deletes all your untracked files/directories. Beware. – crizCraig Aug 11 '11 at 6:05
You can give git clean a path argument to be more specific and avoid deleting untracked files that aren't conflicting. – joachim Oct 18 '11 at 10:08
1  
Awesome... Ran this against my dotfiles repo... In my home directory. Good that I didn't really have anything important there... – Lauri Dec 11 '11 at 10:35
I think the scenario description makes it clear that he doesn't really want to throw away the content. Rather what he wants is to stop git baulking at overwriting the files. @Lauri, this should not have happened to you. Unfortunately people seem to have misread the essence of scenario description - see my suggestion. – Hedgehog Feb 11 at 23:05
feedback

I think this is the right way to:

  git fetch --all
  git reset --hard origin/master

git fetch downloads the latest from remote without trying to merge or rebase anything. Then the git reset resets the master branch to what you just fetched.

link|improve this answer
9  
Careful anyone. This will remove all the local files. – Armand Jan 19 at 22:05
1  
This is the correct answer, that will properly make the local repository exactly match the remote tracking branch. – Ether Feb 17 at 17:25
Armand: I think that's the point here. Anyway, this worked great for me. Thanks! – Lee Francis Mar 20 at 9:33
Watch out! If you have local unpushed commits this will remove them from your branch! This solution keeps untracked files not in the repository intact, but overwrites everything else. – Matthijs P May 17 at 8:18
feedback
up vote 35 down vote accepted

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|improve this answer
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 '09 at 4:25
would he not need to change to the master branch and then do git clean for it to work? Then he can flip back to whatever development branch he was working from. – foxed Jan 25 '10 at 21:38
@slacy: Then you need to merge the two branches. – Xiong Chiamiov Feb 5 '10 at 0:07
5  
git clean is a rather blunt instrument, and could throw away a lot of things that you may want to keep. Better to remove or rename the files that git is complaining about until the pull succeeds. – Neil Mayhew Jul 2 '10 at 13:21
I do not think this works in general. Isn't there a way to do basically a git clone remote via a forced git pull? – mathtick Nov 29 '10 at 18:30
show 2 more comments
feedback

You might find this command helpful to throw away local changes:

git checkout <your-branch> -f

and then do a clean up (Removes untracked files from the working tree):

git clean -f

If you want to remove untracked directories in addition to untracked files:

git clean -fd
link|improve this answer
I think the scenario description makes it clear that he doesn't really want to throw away the content. Rather what he wants is to stop git baulking at overwriting the files. See my suggestion. – Hedgehog Feb 11 at 23:03
feedback

The only thing that worked for me was:

git reset --hard HEAD~5

This will take you back 5 commits and then with

git pull

Found that by looking up how to undo a git merge.

link|improve this answer
feedback

I had a similar problem. I had to do this:

git reset --hard HEAD
git clean -f
git pull
link|improve this answer
1  
use git clean with caution – nategood Mar 30 at 16:39
feedback

These seem to be terrible answers, terrible in the sense of what happened to @Lauri by following David Avsajanishvili suggestion.

Rather (git > v1.7.6):

git stash --include-untracked
git pull

Later you can clean the stash history.

Manually, one-by-one:

$ git stash list
stash@{0}: WIP on <branch>: ...
stash@{1}: WIP on <branch>: ...

$ git stash drop stash@{0}
$ git stash drop stash@{1}

Brutally, all-at-once:

$ git stash clear

Of course if you want to go back to what you stashed:

$ git stash list
...
$ git stash apply stash@{5}
link|improve this answer
Aren't you assuming that a commit has never been performed? In my case I made several commits to my local branch, but wanted to "reset" everything back to the remote branch – Lee Francis Mar 20 at 10:55
No I don't think so. Stashing just moves uncommitted files out of the way. The above also moves (stashes) files that git does not track. This prevents files that have been added to the remote, which have not yet pulled down to your machine - but which you have created (!) - to be pulled down. All without destroying the uncommitted work. Hope that makes sense? – Hedgehog Mar 20 at 23:54
1  
If you don't have 1.7.6, you can mimic --include-untracked simply by temporarily git add-ing your entire repo, then immediately stashing it. – nategood May 1 at 22:48
feedback

Like Hedgehog I think the answers are terrible. But though his might be better, I don't think it is as elegant as it could be. The way I found to do this is by using "fetch" and "merge" with a defined strategy. Which should make it so that your local changes are preserved as long as they are not one of the files that you are trying to force an overwrite with.

first do a commit of your changes

 git add *
 git commit -a -m "auto dev server commit"

then fetch the changes and overwrite if there is a conflict

 git fetch origin master
 git merge -s recursive -X theirs origin/master
link|improve this answer
This is the best answer I've seen so far. I haven't tried it, but unlike other answers, this doesn't attempt to nuke all your untracked files, which is very dangerous for obvious reasons. – huyz May 7 at 9:36
feedback

I had the same problem and for some reason, even a git clean -f -d would not do it. Here is why: For some reason, if your file is ignored by git (via a .gitignore entry, I assume), it still bothers about overwriting this with a later pull, but a clean will not remove it, unless you add -x.

link|improve this answer
feedback

I had the same problem. No one gave this advice but it worked for me.

I solved it by:

  1. Deleting all the files. Leave just the .git directory.
  2. git reset --hard HEAD
  3. git pull
  4. git push

Now it works.

link|improve this answer
Same here. Sometimes only the very hard solution works, it happens often that only reset and clean are not enough somehow... – jdehaan Dec 15 '11 at 11:28
feedback

I just solved this myself by:

git checkout -b tmp   #feel free to pick a better name for your local changes branch
git add -A
git commit -m 'tmp'
git pull
git checkout master  #or whatever branch you were on originally
git pull
git diff tmp

where the last command gives a list of what your local changes were. Keep modifying the "tmp" branch until it is acceptable and then merge back onto master with: git checkout master && git merge tmp

For next time, you can probably handle this in a cleaner way by looking up "git stash branch" though stash is likely to cause you trouble on first few tries, so do first experiment on a non-critical project...

link|improve this answer
feedback

I believe there are two possible causes of conflict, which must be solved separately, and as far as I can tell none of the above answers deals with both:

  • Local files that are untracked need to be deleted, either manually (safer) or as suggested in other answers, by git clean -f -d

  • Local commits that are not on the remote branch need to be deleted as well. IMO the easiest way to achieve this is with: git reset --hard origin/master (replace 'master' by whatever branch you are working on, and run a git fetch origin first)

link|improve this answer
+1 for git reset --hard origin/master, that's the magic key – jdehaan Dec 15 '11 at 11:38
feedback

You could ignore that file with a file in your project base folder:

.gitignore

public/images/*

Then pull the changes and then remove that line from your gitignore file.

link|improve this answer
It contradicts Tierlieb's answer. – Piotr Dobrogost Dec 11 '11 at 19:26
feedback

I have a strange situation that either git clean or git reset worked. I have to remove it conflict file from git index by

git rm [file]

Then I can pull just fine.

link|improve this answer
feedback
1. git reset --hard HEAD
2. git pull
3. git push

Worked for me pulling to win from to mac or reverse but I did not delete the local files.

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.