I know that there are lots of similar questions on Stackoverflow but I am new to git and I am a bit stuck on this one.

I have started working on a Project and I made some unwanted commits which I pushed to origin master. Now, when I try to do a Pull Request Github wants to commit all of the previous commits.

My question is, how do I remove the unwanted commits and commit the changes that I want to commit so that I am updo date with the master fork?

Thanks a lot.

link|improve this question

70% accept rate
Look up "git rebase". you can squash commits together, and leave some commits out. – Abe Petrillo Jan 20 at 19:30
feedback

1 Answer

I assume your origin is your own fork of some project that you want to do a pull request too?

Since you will be changing history (by resetting the head) you will need to push with --force flag. Locate the hash of your last good commit using git log.

Now run

git reset SHA

This will change your head to that shad an preserve the changes in the files since that last good commit, your index will also be reset.

Now you can change your code and do the commits you want. But you have to do git push --force since you changed the history of the repository. This means that anyone who forked your repository won't be able to pull changes from you anymore. But you will be able to do a pull request to your upstream.

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.