#git bot interface
History of !pull_upstream
- To incorporate changes from an "upstream" or forked-from repository: git remote add upstream $URL; git fetch upstream; git merge upstream/$BRANCH. https://help.github.com/articles/syncing-a-fork/
By Eugene at 2016-02-03 21:46:35
- To pull changes from an "upstream" repository(or any other repo that is not "origin") into your repo, use: git remote add upstream $URL; git fetch upstream; git merge upstream/$BRANCH
By EugeneKay at 2012-07-27 21:50:31