Cataclysm
Cataclysm

Reputation: 8548

How to know all projects from remote repository?

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

  1. projectA.git
  2. projectB.git
  3. projectC.git

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

Answers (1)

VonC
VonC

Reputation: 1323553

Not with git alone, you need a frontend dedicated application to list the repos.

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

Related Questions