Usr/lib/git-core/git-rebase: 590: cannot open /home/mathieu/dummy/.git/rebase-merge/rewritten: No such file?

What you probably want to do is look at git reflog show local. You should see some previous positions of the local branch, hopefully something generally like this: d22ffd5 local@{0}: rebase finished: refs/heads/local onto fd02971501218f3817ceffa970ae9a4813139ae0 9011ecf local@{1}: commit: foo 6134eab local@{2}: commit: bar and assuming local is still checked out (check it out if it's not) all you need do is git reset --hard 9011ecf, where that's the SHA1 of the commit the branch pointed to just before the rebase. That will, very simply, reset the local branch to point back to that commit again, and update your index and work tree along with it.

Very very impressive! Thanks you saved me quite some time. – malat Mar 22 at 16:18.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions