Download SubGit plugin for Gerrit server.
MD5 checksum: 3902cf714c856524e8f4815ad70c00f3
|
Move downloaded file into pluginsdirectory:
$ mv ./subgit-gerrit-plugin-1.0.0-EAP4.jar GERRIT_SITE/plugins |
where
GERRIT_SITE – the directory that was used as $sitepath during Gerrit installation.Open Gerrit configuration file residing by the following path:
GERRIT_SITE/etc/gerrit.config |
where
GERRIT_SITE – the directory that was used as $sitepath during Gerrit installation.
Locate receive.timeout parameter and set it to 0:
[receive] timeout = 0 |
if you have Git installed on this machine, it can be done by the following command:
$ git config -f GERRIT_SITE/etc/gerrit.config receive.timeout 0 |
Restart Gerrit daemon:
$ GERRIT_SITE/bin/gerrit.sh restart |
where
GERRIT_SITE – the directory that was used as $sitepath during Gerrit installation.
|
Check SubGit plugin is showed in Gerrit:

Open Gerrit server console and step into gitdirectory within GERRIT_SITE:
$ cd GERRIT_SITE/git |
where
GERRIT_SITE – the directory that was used as $sitepath during Gerrit installation.newly created project directory should be present here and named <given project name>.git
$ ls -l drwxr-xr-x. 7 root root 100 May 10 12:00 All-Projects.git drwxr-xr-x. 7 root root 100 May 10 12:00 All-Users.git drwxr-xr-x. 7 root root 100 May 11 19:26 project.git |
Run this command to configure SubGit import:
$ subgit configure --layout auto --trunk TRUNK SVN_URL GIT_REPO |
where
SVN_URL – SVN project URL.GIT_REPO – a path to new Git repository.TRUNK – a path, relative to SVN_URL, that leads to an SVN directory that plays a role of the main line of development.
|
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 the Git repository by the command:
$ subgit install GIT_REPO |
where
GIT_REPO – a path to the Git repository.
|
When the command completed, you can clone your new Git repository and start to work with it:
$ git clone GIT_REPO WORK_TREE |
where
WORK_TREE – a path to your working copy.
|
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. |
Note: no license key required for import! |
Would you have any assistance, don't hesitate to contact us at support@subgit.com.