Last active
January 25, 2018 10:14
-
-
Save Maartenvm/b5e26d643c5fa08c51a5c86d627f5655 to your computer and use it in GitHub Desktop.
Bijwerken NLeSC-Storyteller/StoryTeller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ga naar de directory met een clone van NLeSC-Storyteller/StoryTeller | |
cd fork/Storyteller | |
// update naar de huidige versie, voor de zekerheid. | |
git pull | |
// Check of the upstream gedefinieerd is | |
git remote -v | |
origin [email protected]:NLeSC-Storyteller/StoryTeller.git (fetch) | |
origin [email protected]:NLeSC-Storyteller/StoryTeller.git (push) | |
upstream [email protected]:cltl/StoryTeller.git (fetch) | |
upstream [email protected]:cltl/StoryTeller.git (push) | |
// Zo niet, voeg deze toe | |
git remote add upstream [email protected]:cltl/StoryTeller.git | |
// Pull upstream | |
git pull upstream master | |
// Fix evt. merge issues (waarschijnlijk niet). | |
// Push de bijgewerkte fork. | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment