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
# Part 1, if necessary: | |
# Configure a remote for your fork | |
# https://help.github.com/articles/configuring-a-remote-for-a-fork/ | |
# In Terminal, cd into your local repo and run this command: | |
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git | |
# In general, git remote add upstream <upstream repo> | |
# Verify by running this command: | |
git remote -v |