Git svn rebase : checksum mismatch

前端 未结 6 933
长情又很酷
长情又很酷 2020-12-04 19:40

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         


        
6条回答
  •  青春惊慌失措
    2020-12-04 20:06

    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.

提交回复
热议问题