Although this sounds like a common question, I actually could not find any thread with the same issue I am having on #SO.
I have an old copy of an svn repo (checked out from a repo that does no longer exist - server decommissioned a while ago). And I want to checkout commit history on that repo. I figured since there is a ".svn" folder in the root of the repo with 65+M of data in it that it should be possible to do so.
What I tried so far (but is not working) : Init a new git repo and try to convert existing repo to git
# Init empty git repo
git init
git svn rebase -l
# Init git-svn repo
rm -rf .git
git svn init http://same/url/as/the/one/used/before/decommissioning/the/server
git svn rebase -l
Is what I am trying to do even possible ? Is the data I am looking for even available offline ?