문제

I just finished converting my CVS repository to git. With my CVS repo, I could connect with eclipse (via Import -> Projects from CVS -> Use an existing module), and view a list of all of my projects.

With git, I can't seem to do that. I have to manually type in the name of a project I want to check out, making it necessary for me to ssh into the remote machine just to run ls ~/.git to remember the name.

Is there a way to list all of my projects in Eclipse? Maybe with a plugin? I own the server, so if I need extra configuration on either end, that's fine.

도움이 되었습니까?

해결책

This isn't possible directly in EGit: it only allows to access a specific Git repo through its url, not to list all repos of a git server.

Browsing multiple repos is done separately, through for instance a gitweb interface, meaning a web browser. (gitweb is shipped with git, so you can activate it on your server).
See gitweb man page.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top