文章版本: Enterprise Server 2.17
我应使用哪个远程 URL?
There are several ways to clone repositories available on GitHub.
当您登录到帐户查看仓库时,可以用于将项目克隆到计算机上的 URL 在仓库详细信息下方提供:
有关设置或更改远程 URL 的信息,请参阅“更改远程仓库的 URL”。
使用 HTTPS URL 克隆(推荐)
https://
克隆 URL 在所有仓库(公共和私有)中提供。 These URLs work even if you are behind a firewall or proxy.
When you git clone
, git fetch
, git pull
, or git push
to a remote repository using HTTPS URLs on the command line, Git will ask for your GitHub Enterprise username and password.
如果您启用了双重身份验证,您必须使用个人访问令牌进行身份验证,而不是用于 GitHub 的用户名和密码。 更多信息请参阅“使用双重身份验证 (2FA) 保护您的帐户”和“创建用于命令行的个人访问令牌”。
提示:
-
You can use a credential helper so Git will remember your GitHub username and password every time it talks to GitHub. For more information, see "Caching your GitHub password in Git."
-
To clone a repository without authenticating to GitHub Enterprise on the command line, you can use GitHub Desktop to clone instead. For more information, see "Cloning a repository from GitHub to GitHub Desktop."
使用 SSH URL 克隆
SSH URL 通过 SSH(一种安全协议)提供 Git 仓库的访问权限。 To use these URLs, you must generate an SSH keypair on your computer and add the public key to your GitHub Enterprise account. For more information, see "Connecting to GitHub with SSH."
When you git clone
, git fetch
, git pull
, or git push
to a remote repository using SSH URLs, you'll be prompted for a password and must provide your SSH key passphrase. For more information, see "Working with SSH key passphrases."
Tip: You can use an SSH URL to clone a repository to your computer, or as a secure way of deploying your code to production servers. You can also use SSH agent forwarding with your deploy script to avoid managing keys on the server. For more information, see "Using SSH Agent Forwarding" in GitHub 开发者文档.
使用 Subversion 克隆
You can also use a Subversion client to access any repository on GitHub. Subversion offers a different feature set than Git. For more information, see "What are the differences between Subversion and Git?"
You can also access repositories on GitHub from Subversion clients. For more information, see "Support for Subversion clients."
延伸阅读
- Working with Remotes from the Pro Git book site