This commit is contained in:
rusefi 2019-01-02 22:32:30 -05:00
parent e52df43427
commit 0357ce332c
3 changed files with 11 additions and 0 deletions

View File

@ -38,6 +38,8 @@ git remote add upstream https://github.com/ChibiOS/ChibiOS.git
git remote add upstream https://github.com/RomRaider/RomRaider
git remote -v
See also git_scripts/git_add_upstream.bat
=========================================
https://help.github.com/articles/syncing-a-fork/
git fetch upstream
@ -49,6 +51,8 @@ git push
http://stackoverflow.com/questions/9646167/clean-up-a-fork-and-restart-it-from-the-upstream
See also git_scripts/git_reset_to_upstream.bat
=========================================
https://stackoverflow.com/questions/19279490/can-i-fork-another-persons-repo-twice-into-my-own-account

View File

@ -0,0 +1,3 @@
git remote -v
git remote add upstream https://github.com/rusefi/rusefi.git
git remote -v

View File

@ -0,0 +1,4 @@
git fetch upstream/master
git checkout master
git reset --hard upstream/master
git push origin master -f