Generated .git link do not lead to the repo .git, 404 not found
Closed
Generated .git link do not lead to the repo .git, 404 not found
Created by: wonson
I type a link like this in browser: http://servername.com:port/subDirectory/user/project.git and it returns 404. Is it normal?
Gitlab is in a sub-directory "gitlab". Is it related?
BTW I dunno if it is working for Git. Because I have "fatal: the remote end hung up unexpectedly" using SSH link when I am doing "git push" to create a repo for my new project.
Created by: wonson
I think the 2 issues mentioned above are the same problem - wrong path.
Since following the tutorial, the repo is in /home/git/repositories, but the path generated are
- ssh://git@servername.com:port/user/project.git
- http://servername.com:port/gitlab/user/project.git
That cause the problem of 404 and "fatal: the remote end hung up unexpectedly"
By Administrator on 2013-04-11T04:59:41 (imported from GitLab project)
Created by: migroh
Same problem here. I've installed version 5.0-stable.
You can access the repository by adding "repositories" to the path (even if your repos_path is configured for /home/git/repositories in the gitlab & gitlab-shell config).
- git clone git@servername:repositories/user/project.git
By Administrator on 2013-04-11T16:51:34 (imported from GitLab project)