Reputation: 733
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?
Upvotes: 5
Views: 5921
Reputation: 285
How to clone a git repository in windows ?
Go to the correct folder location :
You can see the repository is downloading. Sometimes it will ask the username and the password which access of repository URL is contained site
Upvotes: -1
Reputation: 60143
It is better to use some git repositories manager to do this, and I recommend to use gitolite for small case, see guideline http://progit.org/book/ch4-8.html, then you can do as follow
In more professional way (I think) is to set git repo seperately and sync to redmine git repo.
The second case is more independant and easy to manage by different people.
Upvotes: 0
Reputation: 99374
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.
Upvotes: 3