Git Note

Bash
git remote -vv

git remote add upstream [https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git](https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git)

git fetch upstream

git merge upstream/master

git push origin master

git fetch --all<br />git rebase upstream/master<br />git push --force-with-lease origin my-branch