Created
June 10, 2018 21:39
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
# 1. Clone your fork: | |
git clone <your-forked-repo>.git | |
# 2. Add remote from original repository in your forked repository: | |
cd forked-repo | |
git remote add upstream <your-forked-repo>.git | |
git fetch upstream | |
# 3. Updating your forked repo from original one to keep up with their changes: | |
git pull upstream master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment