Does GitHub support the git: // protocol for pull?

Can this configuration be used? Or are there no links between ssh: // and git: //?

+4
source share
1 answer

Yes Yes. However, the URL string on the github no loner webpage has git protocol for copying the URL to the clipboard. You must replace https: // git: // yourself.

In addition, git uses port 9418. Make sure you can use this port.

The git protocol is not encrypted, but faster than https.

The git protocol is read-only on github. You cannot click on it using the git protocol.

+6
source

All Articles