
Run this command on behalf of the same user you use to serve Git repository:
$ subgit-3.2.4/bin/subgit configure --layout auto --trunk trunk SVN_URL GIT_REPO |
where
SVN_URL – URL to the SVN project.GIT_REPO – a path to the new Git repository where data from the SVN project will be imported to.The configuration command example:
|
Specify authors mapping
Configure authors mapping in default authors mapping file:
GIT_REPOS/subgit/authors.txt |
Or change core.authors option so that it points to the global authors mapping file.
Find more details about authors mapping in Authors mapping article.
Import data into local Git repository by the command:
$ /tmp/subgit-3.2.4/bin/subgit import GIT_REPO |
|
step into newly created local Git repository
$ cd GIT_REPO |
add a remote to the local Git repository:
$ git remote add github GITHUB_REPO |
where
GITHUB_REPO – GitHub project URL.push local repository content into GitHub repository:
|
When the command completed, all the files are on GitHub, so you can clone your GitHub repository and start to work with it:
$ git clone GITHUB_REPO WORK_TREE |
where
WORK_TREE – a path to your working copy.GITHUB_REPO – GitHub project URL
|
Note: no license key required for import! |
Would you have any assistance, don't hesitate to contact us at support@subgit.com.