-
Öffne TerminalTerminalGit Bash.
-
Liste das aktuell konfigurierte Remote-Repository für deine Fork auf.
$ git remote -v > origin https://HOSTNAME/YOUR-USERNAME/YOUR-FORK.git (fetch) > origin https://HOSTNAME/YOUR-USERNAME/YOUR-FORK.git (push)
-
Lege ein neues Upstream-Remoterepository fest, das mit dem Fork synchronisiert wird.
git remote add upstream https://HOSTNAME/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git
-
Überprüfe das neue vorgelagerte Repository, das du für deinen Fork angegeben hast.
$ git remote -v > origin https://HOSTNAME/YOUR-USERNAME/YOUR-FORK.git (fetch) > origin https://HOSTNAME/YOUR-USERNAME/YOUR-FORK.git (push) > upstream https://HOSTNAME/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git (fetch) > upstream https://HOSTNAME/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git (push)
Konfigurieren eines Remoterepositorys für einen Fork
Du musst ein Remote-Repository konfigurieren, das auf das vorgelagerte Repository in Git verweist, um die Synchronisation der in einem Fork vorgenommenen Änderungen mit dem ursprünglichen Repository zu ermöglichen. Damit kannst du auch Änderungen im ursprünglichen Repository mit dem Fork synchronisieren.