Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git svn rebase : checksum mismatch

Tags:

git

svn

git-svn

I have a problem when I try to do a git svn rebase on my repository. It displays :

Checksum mismatch: code/app/meta_appli/app_info.py expected: d9cefed5d1a630273aa3742f7f414c83      got: 4eb5f3506698bdcb64347b5237ada19f 

I searched a lot but haven't found a way to solve this problem.

If anybody knows, please share your knowledge. Thanks in advance.

like image 657
darkpotpot Avatar asked Jul 01 '10 10:07

darkpotpot


1 Answers

This solution was the only one that worked for me:

See what was the revision number of the last change on the file:

git svn log chrome/test/functional/search_engines.py

Reset svn to be closest parent before that revision:

git svn reset -r62248 -p

Do a git svn fetch!

Dance at your success.

like image 144
Domenic Avatar answered Oct 30 '22 05:10

Domenic