I am trying to migrate an existing SVN repo to Github, I was successfull in migrating other svn repo to Github, but unable to do so with below. Below image shows the SVn url, and the repo. SVN Repo Structure
As per above image, DVAR-DA is trunk, and DVAR-DA-BRANCHES is branches. I am using below command, but all it deos is intialize a .git folder, and nothing else.
git svn clone http://vmdclsvnas501:18080/svn/rDVR --authors-file=authors.txt --trunk=DVAR-DA --branches=DVAR-DA-BRANCHES --no-minimize-url
Can someone please help, what is the command, which can accept, DVAR-DA as trunk, DVAR-DA-BRANCHES as branches, with no tags, and it doesnt resolve the url to some other path either.
If it helps, my git config looks like below.
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[svn-remote "svn"]
url = http://vmdclsvnas501:18080/svn/rDVR
fetch = DVAR-DA:refs/remotes/origin/trunk
branches = DVAR-DA-BRANCHES/*:refs/remotes/origin/*
[svn]
authorsfile = C:/Fazil/Svn2Git_DvarDa/authors.txt