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: d9cefed5d1a63
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.
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!
git svn fetch
Dance at your success.