Artikelversion: Enterprise Server 2.17
Welche Remote-URL sollte ich verwenden?
There are several ways to clone repositories available on GitHub.
Wenn Sie ein Repository anzeigen, während Sie bei Ihrem Konto angemeldet sind, sind die URLs, die Sie zum Klonen des Projekts auf Ihrem Computer verwenden können, unterhalb der Repository-Details verfügbar:
Informationen zum Festlegen oder Ändern Ihrer Remote-URL finden Sie unter „Die URL eines Remote-Repositorys ändern“.
Mit HTTPS-URLs klonen (empfohlen)
Die https://
-Klon-URLs sind auf allen Repositorys, einschließlich der öffentlichen und privaten, verfügbar. 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.
Wenn Du die Zwei-Faktor-Authentifizierung aktiviert hast, musst Du Dich mit einem persönlichen Zugriffstoken anstelle Deines Benutzernamens und Kennworts für GitHubauthentifizieren. Weitere Informationen findest Du unter„Sichern Deines Kontos mit Zwei-Faktor-Authentifizierung (2FA)" und„Erstellen eines persönlichen Zugriffstokens für die Befehlszeile".
Tipps:
-
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."
Mit SSH-URLs klonen
SSH-URLs stellen über das sichere Protokoll SSH den Zugriff auf ein Git-Repository bereit. 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 die GitHub-Entwicklerdokumentation.
Mit Subversion klonen
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."
Weiterführende Informationen
- Working with Remotes from the Pro Git book site