Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't Push After git reset --soft HEAD^

Just now I committed and pushed something (yes, my mistake on the push) that I decided I should 'revert' or 'undo'. So I was told to issue git reset --soft HEAD^ on my end, and I figured this would somehow create a 'revert' commit that once committed would make it as if the change never happened. I don't mind if the history of the change is there at all, that's just what I imagined would happened.

Anyways, after having done that I committed again, and then when I tried to push I got the non-fast-forward error. Now, I know I screwed something up with the reset, something along the lines of my tree and origin tree are 'mismatched' now, but I am wondering how to fix this. Now I just want to go back to the time before I issued the reset, so that I can just manually revert the changes by taking them out manually and then committing, unless someone else can recommend the correct way of reverting a pushed commit, and by this I don't mean that the history has to be gone from the log or anything.

like image 786
Jorge Israel Peña Avatar asked Jan 06 '10 21:01

Jorge Israel Peña


3 Answers

Although my answer is beyond what you are asking, I think it is actually what you are intending to do.

You used git reset --soft HEAD^ to undo the commit you made. This returns the working copy to the state before your commit (since HEAD points to your current commit, and HEAD^ points to the one before it (assuming there is only one parent).

But now when you git push you are told something like:

 ! [rejected]            <branch> -> <branch>e (non-fast-forward)
error: failed to push some refs to 'ssh://<remote server>/<remote path>'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

This is saying that the commits don't line up and it is there to prevent you from making a mistake. The error message is a bit misleading and you don't want to do what it suggests (a pull to get your branch in sync). You can only know NOT to do this because of your intentions.

You can simply get around this with a --force (or -f) (*):

git push --force

You may need to set the upstream again:

git push --force --set-upstream origin <branch>

Be aware that this will have consequences if others have already pulled your work, since there will be different commits that will be making the same changes (possibly). See https://www.kernel.org/pub/software/scm/git/docs/user-manual.html#problems-With-rewriting-history.

To prevent any problems, only ever do pushes to your branches (not some communal branch - for example the development branch the devs merge all their feature branches into) and be sure to have open communication in your team.

A developer would typically use this pattern for what I call Friday Afternoon commits where you want to save your work before the weekend in-case of hardware failure (but return to the pre-commit state on Monday).

*Friday*

git add --all  # To add all files whether they are tracked or not
git commit -m "Friday afternoon commit"
git --set-upstream push      # --set-upstream is for if the branch doesn't exist on the remote server

*Monday*

git reset --soft HEAD^
git push -f --set-upstream origin <branch>

The advantage of doing it this way, compared to a git revert discussed in another answer, is to avoid extra commits. The reset will have 2 commits and this way will have none (no extra ones). The advantage of git reset is that it will NOT rewrite history so is much safer, especially if you aren't sure of what you are doing.

(*) Typically repositories are configured to NOT let you do this to master - fix on a branch and create a pull request instead. For if you've read the above link, to rewrite history on master will have SERIOUS consequences (unless you are the only person who ever clones that code).

like image 120
HankCa Avatar answered Oct 21 '22 17:10

HankCa


If I understand your problem correctly you could try the following:

(I'm assuming this is your 'master' branch and you are pushing to 'origin')

Sync up with your remote to get to the same state.

git remote update
git checkout master
git merge origin/master

Now revert your commit

git revert HEAD (or where ever the commit you want to revert is now)
git commit -av

Sync up with your remote

git push
like image 21
rnicholson Avatar answered Oct 21 '22 17:10

rnicholson


Now I just want to go back to the time before I issued the reset

If you only want to cancel the git reset --soft you just did, you can look up the former HEAD commit id in the reflogs

 $ git reflog
 $ git reset --soft formerCommit

And then you can prepare your git revert

like image 40
VonC Avatar answered Oct 21 '22 16:10

VonC