A SVN repo I use git-svn to track was recently corrupted and a backup was recovered. However, a week\'s worth of commits were lost in the recovery. Is it possible to recover
Here is how I achieved what I wanted:
http://tracked-svn/trunk
in a fresh git-svn repo.git remote add -f up-to-date /path/to/repo
)git merge remotes/up-to-date/master
git svn dcommit
Rebasing on my old repo gives no errors, and dcommit works as expected.
This might not be the best way to recover commits, but it got me what I wanted.