Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to clone git repositories on redmine?

Tags:

git

redmine

I configure my repo as /home/repo/gitrepo/myproj.git on redmine.

Now, i want to clone it on my laptop but i cannot see the url

what url should i use?

like image 897
vinyuri Avatar asked Nov 06 '22 02:11

vinyuri


1 Answers

If you're doing this for personal use, you could be well done with accessing your repository via ssh.

git clone [email protected]:gitrepo/myproj.git

However, you might want to search for a more powerful Redmine plugin for Git support, or use repository management system, such as gitosis.

like image 119
P Shved Avatar answered Nov 15 '22 04:11

P Shved