Support #3675
How to let users clone a git repository without giving them an account
Status:
Resolved
Priority:
Normal
Assignee:
-
Target version:
-
Description
Hi,
Is it possible to allow users to clone a git repository without giving them an account, i.e. I would like anyone who wants clone the repository to be able to do so. I tried the command:
git clone ssh://cdcvs.fnal.gov/cvs/projects/booster_loco
but that obviously doesn't work.
Thanks!
History
#1 Updated by Marc Mengel almost 8 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
- Estimated time set to 0.10 h
If it is a public project (as that one is) then there is an http read-only
url for the repository, in this case:
http://cdcvs.fnal.gov/projects/booster_loco
so they can
git clone http://cdcvs.fnal.gov/projects/booster_loco
(once you put something in it...)