How to import an existing bare git repository into Gitlab?

46,126

Solution 1

Does Gitlab need a normal repository (non-bare)?

No, all repos managed by gitlab are bare repos.

You should see:

/home/git/repositories/user1/repo1.git
/home/git/repositories/user1/repo2.git
/home/git/repositories/greoup1/repo3.git
...

Make sure the rights of your test.git folder (and bare repo files within it) are the same than the existing bare repos under /home/git/repositories/.

If the import doesn't work, then "replace the empty project folder (which was created by import trial) with my bare repo" should.

But: you need to make sure any hook which was in the empty bare repo created by GitLab (in ~git/repositories/arepo.git/hooks) is copied over your full bare repo replacing the empty one (same path).
Check also what was in ~git/repositories/arepo.git/info and ~git/repositories/arepo.git/config

To debug, try first to clone the empty bare repo created by GitLab during the failed import.
Then replace it with your own, double-check the hooks and try again.


As mentioned by the OP and documented in GitLab "Trouble Shooting Guide", the correct ssh url is:

[email protected]:repositories/mygroup/proj1.git

with :repositories mentioned.


To import bare repos (as mentioned by Sytse Sijbrandij below and in raketasks/import.md)

  • copy your bare repos under git repos_path (see config/gitlab.yml gitlab_shell -> repos_path)
  • run the command below

    bundle exec rake gitlab:import:repos RAILS_ENV=production
    

Solution 2

For the documentation of this feature see https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/raketasks/import.md

Solution 3

For me the location to copy the repository is - /var/opt/gitlab/git-data/repositories

I copied my existing bare repository in above dir and ran >gitlab-rake gitlab:import:repos it worked!!!

Solution 4

I have it! It was a missing directory in my ssh path. This issue was already tracked here.

Sorry, but the error messages were not so obviously. I hope this can help other Gitlab-beginners like me :)

Share:
46,126

Related videos on Youtube

user2451418
Author by

user2451418

IT Student

Updated on July 05, 2022

Comments

  • user2451418
    user2451418 almost 2 years

    I import my bare git repository into Gitlab as described as here , because it was not recognized as an git repository, but creates a 94K big 'empty' repo (the original is 2,8GB big):

    $ bundle exec rake gitlab:import:repos RAILS_ENV=production
    fatal: Not a git repository (or any of the parent directories): .git
    Processing test.git
    INFO: Sidekiq client using redis://localhost:6379 with options:namespace=>"resque:gitlab"}
     * Created test (test.git)
    Done!
    

    As a workaround I replace the empty project folder (which was created by import trial) with my bare repo. Afterwards I tree to clone the repo from remote and get the following error:

    $ git clone [email protected]:...test.git
    Cloning into 'test'
    fatal: '...test.git' does not appear to be a git repository
    fatal: Could not read from remote repository.
    
    Please make sure you have the correct access rights
    and the repository exists.
    

    But the git user should have all rights which are needed. -Maybe I have something overlooked?

    My System: RHEL6.3, Git 1.8.3.4, Gitlab5.3.

    Does Gitlab need a normal repository (non-bare)? Or what could be my problem?

  • user2451418
    user2451418 almost 11 years
    I have added my import error to my question, because I think the main problem is the import of my bare repo. The permissions I have checked several times and those are (drwxrws---.).
  • VonC
    VonC almost 11 years
    @user2451418 then your workaround should work... I have edited my answer with some more ideas to consider.
  • user2451418
    user2451418 almost 11 years
    I think there are no hooks created:***post-receive hooks in repos are links: ... Gitlab / test ... repository is empty***. And the same with satellites. Also the problem does not disappear when i try to clone the empty repo from remote via ssh. But on the server cloning works fine.
  • VonC
    VonC about 10 years
    Good Link. +1. i have included it in my selected answer for more visibility.
  • Ciro Santilli OurBigBook.com
    Ciro Santilli OurBigBook.com over 9 years
    You will also want to consider: github.com/gitlabhq/gitlabhq/pull/8140 : only put your to be imported repos under a namespace (user or group subdir).
  • Anake
    Anake about 8 years
  • Farrukh Najmi
    Farrukh Najmi about 7 years
    I followed the instructions on the linked page and did not see my new project. Upon investigation it was because the project was internal and not visible to a user without admin privileges. Fixing the visibility fixed the issue.
  • Alex
    Alex about 6 years
    Doing this return the following error message : "Please specify an import path that contains the repositories". What worked was following gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/raketasks/… and escaping the [ and ] characters when using zsh.