- Install SubGit tool according to the Installation guide.
- Configure GitHub
- login to GitHub and create a new repository:
- login to GitHub and create a new repository:
- Configure the local repository:
Run this command on behalf of the same user you use to serve Git repository:
-3.2.4/bin/subgitNo Format $ subgitconfigure --layout auto --trunk trunk SVN_URL GIT_REPOwhere
-SVN_URL– the URL to the SVN project.
GIT_REPO- – the path to the new Git repository where data from the SVN project will be imported to.TRUNK– the path, relative toSVN_URL, leading to the SVN directory that acts as the main line of development.
Expand title see the configuration command example. Code Block language text theme FadeToGrey title subgit configure example $ subgit configure --layout auto --trunk trunk http://svn.example.com/svn/repository/project ./project.git SubGit version 3.2.4 ('Bobique') build #3670 Configuring writable Git mirror of remote Subversion repository: Subversion repository URL : http://svn.example.com/svn/repository/project Git repository location : ./project.git Git repository is served by GitLab, hooks will be installed into 'custom_hooks' directory. Detecting peg location... Authentication realm: <http://svn.example.com/:80> Subversion Repository Username [git]: user Password for 'user': Peg location detected: r10248 project/trunk Fetching SVN history... Done. Growing trees... Done. Project origin detected: r1 project/trunk Building branches layouts... Done. Combing beards... Done. Generating SVN to Git mapping... Done. CONFIGURATION SUCCESSFUL To complete SubGit installation do the following: 1) Adjust Subversion to Git branches mapping if necessary: /var/opt/gitlab/git-data/repositories/user/project.git/subgit/config 2) Define at least one Subversion credentials in default SubGit passwd file at: /var/opt/gitlab/git-data/repositories/user/project.git/subgit/passwd OR configure SSH or SSL credentials in the [auth] section of: /var/opt/gitlab/git-data/repositories/user/project.git/subgit/config 3) Optionally, add custom authors mapping to the authors.txt file(s) at: /var/opt/gitlab/git-data/repositories/user/project.git/subgit/authors.txt 4) Run SubGit 'install' command: subgit install ./project.git
Specify authors mapping
Update Configure authors mapping in default authors mapping file:
file or changeNo Format GIT_REPOS/subgit/authors.txtOr change
core.authorsoption to point tooption so that it points to the global authors mapping file.Find more details about authors mapping in Import book
Import data into local Git repository
Import repositoryby the command:
/tmp/subgit-3.2.4/bin/subgit importNo Format $subgit import GIT_REPO
see command example --> (to be placed in drop-down block):
$ /tmp/subgit-3.2.4/bin/subgit importwhere
GIT_REPO– the path to the Git repository.
SubGit versionExpand title See subgit import example… Code Block language text theme FadeToGrey title subgit import $ subgit import ./project.git
#3670Authentication realm: httpSubGit version 3.2.4 ('Bobique') build
80#3670 Authentication realm: <http://svn.example.com:
Translating Subversion revisions to Git80> Subversion Repository Username [git]: user Password for 'user':
Subversion revisionsTranslating Subversion revisions to Git commits...
IMPORTSubversion revisions translated: 10248. Total time: 2 hours 15 minutes 38 seconds.
IMPORT SUCCESSFUL
- Sync local Gitrepostiorywith Git repository with GitHub:
step into the newly created local Git repository repository
No Format $ cd GIT_REPO
add remote to a remote to the local Git repository:
remote addgithubhttps://github.com/user/projectNo Format $ git
remote add github GITHUB_REPOwhere
GITHUB_REPO– GitHub project URL.
push local repository content into GitHub repository:
pushgithubExpand title See git push command… Code Block language text theme FadeToGrey title git push $ git
push github --all --follow-tags
When the command completed, all the files are the local repository is not needed anymore and can be removed:
No Format $ rm -Rf GIT_REPO
All the files from SVN are now on GitHub, so you can clone your GitHub repository and start to work with it:
No Format $ git clone GITHUB_REPO WORK_TREE
where
WORK_TREE -TREE– the path to your working copy.GITHUB_REPO -REPO– GitHub project URL see command example --> (to be placed in drop-down block):$ git clone
Expand title See git clone example Code Block language text theme FadeToGrey title git clone example $ git clone https://github.com/user/project.git ./project.git Cloning into './project.git'... Password for 'http://user@example.com': remote: Counting objects: 99, done. remote: Compressing objects: 100% (39/39), done. remote: Total 99 (delta 50), reused 99 (delta 50) Unpacking objects: 100% (99/99), done.
Warning title Empty working tree case If Git warns you that you are cloning an empty repository and you don't see your files in the working tree, most probably automatic branches and tags mapping didn't work correctly. In this case, mapping has to be set manually, see details on mapping in Branches and tags mapping.
- Get support.
If you have encountered any problems, see the following guides for more details:- SubGit configuration file reference
- Authors mapping
- Branches and tags mapping
- Branches and tags mapping examples
| Info | ||
|---|---|---|
| ||
For one-time import, no license |
...
is needed. |
Should you need any assistance, don't hesitate to contact us at at support@subgit.com.
