Content
git repository, unable to checkout
Added by mark twain over 7 years ago
Hi there!
I am unable to correctly use the git integration of OP, hopefully someone here is able to help me.
I am running OP6.1, with the up-to-date docker container and all persistent directories needed, mounted to the correct location + an extra one, to be used as the repo directory.
Running on a computer within my LAN, which has a static IP and an entry within my hosts list:
cloud
pm.cloud
This works, stable since about a week (incl. reboots) .
The repo itself was initialized, does contain the .git folder and i committed my first changes within my LAN.
From within OP, i can see the files and commits of this repo, but i am unable to checkout as OP suggests me to (ok, as I am the admin, I told myself this, by setting the Checkout URL-Präfix to be https://pm.cloud/repos )
Cloning this repo via the link “https://pm.cloud/repos/project.git”
leads to:
t@wain:~/test$ git clone https://pm.cloud/repos/project.git/
Klone nach ‘project’ …
fatal: repository ‘https://pm.cloud/repos/project.git/’ not found
I am quite sure i muste have done something wrong, anyone got an idea what exactly? :)
BR!
Replies (7)
Hi,
Perhaps I have the same problem.
I used the GIT URL https://[my-domain]/openproject/git/[my-projectname]/ (I mean with [my-projectname] the project name how it is spelled in OP) the whole last year.
Today I tried to push new changes, but the message is, it cannot be found. Neither Eclipse nor the GIT CLI client is able to find the repo. The error message is:
Log of the apache in front of openproject
But: in OpenProject, I can still review all commits and see the statistics. I noticed some changes in the apache config in the last recent updates, but I cannot determine which update. Perhaps this could be the reason.
My system is: Ubuntu 16.04.2, OpenProject CE 6.1.4
Btw: the mentioned link in the repository view like this: https://[my-domain]/openproject/git/[reponame].git/ never worked for me.
I also tried to fetch the repo from the ruby server locally by git clone http://localhost:6000/openproject/git/[projectname]/, but the messages is still a http 404.
By the way @mark twain, the repositories are no extra plugins afaik. Perhaps you can move the topic into the general category…
@Dennis_Uckel
I tried cloning the repo with the link you used, same results here … .
By the way
mark twain, the repositories are no extra plugins afaik. Perhaps you can move the topic into the general category…@Any hint on how to move a topic?
Btw. https://community.openproject.com/topics/7158?board_id=6&r=7161#message-7161
indicates, this might related to some SSL stuff ?
As i said, OP was deployed using docker, served by nginx,, with let’s encrypt cert.
Anything one has to keep in mind here?
Finally, I managed it. Pulling and Pushing is possible again.
Did a complete
, like mentioned in the link. When it came to the question about the webserver, I didn’t skip, but answered the questionare again.
I think, the most important part is, that the file /etc/openproject/addons/apache2/includes/vhost/git_smart_http.conf was (re-)written. It handles all requests of the git part:
In your case it should be similar like this: /etc/openproject/addons/nginx/includes/vhost/git_smart_http.conf
My http configuration is like this:
—Internet—> Nginx Reverse Proxy with LE certificate —LAN—> Apache with its standard SSL certificate —Server internal—> OpenProjects Ruby-Server
As
openproject reconfigure
is not an option for me (as I am using the docker container - correct me if i am wrong!) i tried to locate
git_smart_http.conf
Therefor, i ran the ‘docker bash’
sudo docker exec -it OpenP6.1 bash
sadly, i was unable to find the file.
+ There is neither a folder called /etc/openproject nor addon
root
b5b9424b28f2:/# lsbin dev home lib64 mnt proc run srv tmp var
boot etc lib media opt root sbin sys usr
root@b5b9424b28f2:/# find . -name addon
root@b5b9424b28f2:/#
@
Or anything git related within /etc/apache2
root
b5b9424b28f2:/etc/apache2# find . -name gitroot@b5b9424b28f2:/etc/apache2#
@
Unfortunately I never used docker so far.
As far as I understood the tutorials and documentations I read, you’re right. You don’t have “openproject (re)configure”, because the configuration is part of the initial command line, if you create the image.
I don’t know which docker setup (or is “image” the right word!?) you use (I found several…), could you post the link to that, please? But nevertheless I have the feeling, that the docker is just providing the ruby/passenger part. The git http part is not handled by OP itself. Therefore I guess, you have to configure your nginx by your own.
Is git-http-backend installed on your server?