I'd like to work with a remote SVN repository using git-svn. I've been trying to download it with git svn clone -s REPO_URL
but because my network connection isn't great and the repo is quite big, it times out.
So, instead, I plan to checkout the entire repo using an SVN client, and then get git-svn working with it after the fact. But is that possible? git svn clone -s
takes takes care of all that stuff (i.e. setting remote URL, importing history, identifying remote branches, etc.), but since I'm downloading the repo another way, I don't know what commands I would need to run to set it up.