Reputation: 8548
Has there any way to know list of git in remote repository ? If I can know , I would like to download all projects from remote repostiory. Please assume remote repository has
Now I am working on projectA.git and I am not knowing about there also have projectB.git and projectC.git.
I can clone or fetch data from ssh://[email protected]:xxx/data/repos/projects/projectA.git
So, I want see another urls such as ..
ssh://[email protected]:xxx/data/repos/projects/projectB.git
ssh://[email protected]:xxx/data/repos/projects/projectC.git
Can it be possible ?
Upvotes: 1
Views: 758
Reputation: 1323553
Not with git alone, you need a frontend dedicated application to list the repos.
gitolite info
).Note: using ssh ls
supposes having access to an interactive ssh, which is generally not recommended (because you could execute other commands as well, like... rm
)
Upvotes: 1