Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  1. Install SubGit

...

  1. tool according to the Installation guide.

  2. Configure GitLab server:

    • Log in Login to GitLab web GUI and create a new project:
      Image RemovedImage Added


      Give a name to your project and click do not check “Initialize repository with a README” checkbox, and click Create project button button.
      Image Removed
      Image Added

       
  3. Configure the repository:

    • Change identity to 'git' user:

      Code Block
      languagetext
      themeFadeToGrey
      titlechange identity to git user
      $ su git


    • Change directory to that one that contains the newly created project.

    GitLab usually stores its project
      • Older versions of GitLab stored projects in

        No Format
        /var/opt/gitlab/git-data/repositories/<username>
    username here is actual GitLab user name that was
      • where <username> was the GitLab username that had been used during the project creation on step 1

    . Step into that directory: Code Block
    languagetext
    themeFadeToGrey
    titlechange directory
    $ cd
      • .

      • Since version 10.0 GitLab uses hashed storage as follows:

        No Format
        /var/opt/gitlab/git-data/repositories/
    userNew GitLab project we have created in step 1 is being stored here in the directory of the same name we named the project
      • @hashed/<hash[0..1]>/<hash[2..3]>/<hash>.git


        Note

        To find the repository path in GitLab v.10+, follow this guide


    • Navigate to that directory:

      Code Block
      languagetext
      themeFadeToGrey
      title
    New project content
    • change directory
      $ 
    ls -l  total 0  drwxrwx---. 6 git git 131 apr 25 02:06 project.git  drwxrwx---. 6 git git 131 apr 25 02:06 project.wiki.git
    • cd /var/opt/gitlab/git-data/repositories/<repo_path>


    • Perform initial import configuration:

      No Format
      $ 
    • /temp/
    • subgit
    • -3.2.4/bin/subgit
    •  configure --layout auto --trunk 
    • trunk
    • TRUNK 
    • SVNURL GITREPO
    • SVN_URL GIT_REPO

      where

      • SVN_URL   
    • - URL to the SVN project
      • – SVN project URL.
      • GIT_REPO 
    • -
      • – a path to new Git repository
    • where data from the SVN project will be imported to. The configuration command example:
      • .
      • TRUNK        –  a path, relative to SVN_URL, that leads to an SVN directory that plays a role of the main line of development.
      Expand
      titlesee the configuration command example.


      Code Block
      languagetext
      themeFadeToGrey
      titlesubgit configure example
      $ 
    • /tmp/
    • subgit
    • -3.2.4/bin/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
    • Expand
      titlesee the configuration command example.

      $ /tmp/subgit-3.2.4/bin/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


    • Specify authors mapping.

      Configure authors mapping in the default authors mapping file:

      No Format
      GIT_REPOS/subgit/authors.txt
    file or change option to point to  
    •  option so that it points to the global authors mapping file.
      Find more details about authors mapping in 

    Import book

  4. Perform import and start using the new Git repository:

    • Import data to the repository by the command:

      No Format
      $ 
  5. /tmp/
    • subgit
  6. -3.2.4/bin/subgit
    •  import GIT_REPO


      Expand
      titleSee import example


      Code Block
      languagetext
      themeFadeToGrey
      titlesubgit import
      $ 
  7. /tmp/subgit-3.2.4/bin/
    • subgit import ./project.git
      
      
    •    SubGit version 3.2.4 ('Bobique') build #3670
      
      
    •    
    • Authentication realm: <http://svn.example.com:80> Subversion Repository
      
    •    Username [git]: user
      
    •    
    • Password for 'user': 
      
         
    • Translating Subversion revisions to Git commits...
      
            
    • Subversion revisions translated: 10248.
            
    • Total time: 2 hours 15 minutes 38 seconds.
      
         
    • IMPORT SUCCESSFUL
  8. ExpandtitleSee import example
  9. $ /tmp/subgit-3.2.4/bin/subgit import ./project.git

    SubGit version 3.2.4 ('Bobique') build #3670

    Authentication realm: <http://svn.example.com:80> Subversion Repository
    Username [git]: user
    Password for 'user':

    Translating Subversion revisions to Git commits...

    Subversion revisions translated: 10248.
    Total time: 2 hours 15 minutes 38 seconds.

    IMPORT SUCCESSFUL




    • When the command completes, you can clone your new Git repository and start to work with it:

      No Format
      $ git clone GITREPO WORKTREE

      where

  10. WORK
    •     WORK_TREE

  11.  – path
    •  – a path to your working copy.

  12. GIT_REPO – GitLab project URL:
  13. Image Removed
    •   

      Image Added


      Expand
      titleSee the command example


      Code Block
      languagetext
      themeFadeToGrey
      titlerepository cloning example
      $ git clone http://user@example.com/user/project.git 
  14. ./
    • /home/user/gitlab_project.git
      
    •   
    • Cloning into '
  15. ./
    • /home/user/gitlab_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.
  16. expand


    • Warning
      title
  17. See the command example

    $ git clone http://user@example.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.

Info
titleNo license needed for import

Note: no license key required for import!

...

    • 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.


  1. Get support:

    If you run into any problems, see one of the following guides for more details:

Info
titleNote:

For one-time import, no license is needed.

Should you need assistance, don't hesitate to contact us at support@subgitat support@tmatesoft.com.