简体   繁体   中英

Using Eclipse and eGit - after the initial setup, how do I tell what protocol is being used, i.e. ssh or not?

We have a small team of developers working on a project that works with a Git repository hosted by TFS that is already owned by the customer. We are using Eclipse and eGit. How can I tell what protocol is being used when we do pull and push? I can see the URL but i'm not sure how to tell what the protocol is.. I'm interested in knowing if SSH is involved.

git remote get-url --all origin

will to display information about URLs of the remote. If they start with https then http is used. If they start with user@server.domain then, most likely, ssh is used.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM