Ok, there has certainly been posts around for this, but I actually did a commit because i thought it was the right thing to do.

So, I have 2 repos, one development and one production. I had to edit something in the production because it was an urgent bugfix, and now I have 3 files that are newer in the production than in the development. So what I did was commit on the production the 3 files and tried a pull but it told me there were merge errors. I tried copying and pasting the new files to the development server and retrying the whole thing and it didnt work.Now im sure that what I need is on the development (since i copied and pasted into it) and commited, so How could i pull and overwrite the conflicting files?

Thanks, Andre

---- Edit following up to @Seths reply

Ok, I guess I do need to reword my question :) I have 3 repos. One dev, one in github and one production. Usually to update production I just do a push from dev to github, git pull origin master (from github to production) and it works. Unfortunately, i changed files on production without stashing. How do I force overwrite instead of merge when trying a pull?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 3 down vote accepted

If you want to entirely replace your local branch foo with the contents of the remote branch origin/foo

git fetch origin
git checkout foo
git reset --hard origin/foo

If you want to do something else, please reword your question. However, I might add the production git repo as a remote and the merge the live changes in, instead of whatever you tried.

link|improve this answer
Ok, I guess I do need to reword my question :) I have 3 repos. One dev, one in github and one production Usually to update production I just do a push from dev to github, git pull origin master (from github to production) and it works. Unfortunately, i changed files on production without stashing. How do I force overwrite instead of merge when trying a pull? – Andre Jun 6 '11 at 21:08
@user786463: What exactly is wrong with my answer? It seems to do exactly what you asked (for values of "foo" probably equal to "master"). Remember to accept the correct answer when you are done. – Seth Robertson Jun 6 '11 at 21:12
Worked like a charm! Thank you. I didn't know what to replace with 'foo'. – Andre Jun 6 '11 at 21:17
@Andre: en.wikipedia.org/wiki/Foobar – Seth Robertson Jun 6 '11 at 21:21
feedback

You need to push from production first to github.

git push origin yourbranch --force

The force will make sure that github has what production has.

Here are the possibilities of what you could do:

You will need to fetch into your development repo the changes in the deploy repo. At this point you will see that the history is branching (via git log --all --graph or gitk --all).

git fetch origin

You can now rebase or merge to get your latest changes to be subsequent to the ones made on the production repo. This will enable you to push changes to your deploy repo at a later point.

The conflicts are there for a reason. Look at them and resolve them, add and commit.

If you want the conflicts to be resolved by taking what is on the production side you can use the "recursive theirs" strategy:

git merge -s recursive -Xtheirs production/yourbranch

If you want to take no changes from your side, merge normally, but when stopped at the conflicts, get the other side of the merge, add and commit.

git merge production/yourbranch
git checkout production/yourbranch -- .
git submodules update #this is optional and can be skipped if you don't have any submodules
git add -A
git commit

Now subsequent pushes to github from development and pulls from github in production will work.

You could reset the branch, but that assumes that you don't want to keep any changes that you made on the development repo.

git reset --hard production/yourbranch

Hope this helps.

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.