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?