From ba52ee829d37b3bdb2348d408b6e969b54251c69 Mon Sep 17 00:00:00 2001 From: rusefi Date: Wed, 19 Dec 2018 21:48:57 -0500 Subject: [PATCH] docs --- misc/git_cheat_sheet.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/misc/git_cheat_sheet.txt b/misc/git_cheat_sheet.txt index 72b61afdd4..4d11a949b6 100644 --- a/misc/git_cheat_sheet.txt +++ b/misc/git_cheat_sheet.txt @@ -34,13 +34,30 @@ https://help.github.com/articles/configuring-a-remote-for-a-fork/ git remote -v git remote add upstream https://github.com/ChibiOS/ChibiOS.git + or +git remote add upstream https://github.com/RomRaider/RomRaider git remote -v ========================================= https://help.github.com/articles/syncing-a-fork/ git fetch upstream git merge upstream/stable_17.6.x + or +git merge upstream/master git push http://stackoverflow.com/questions/9646167/clean-up-a-fork-and-restart-it-from-the-upstream + +========================================= +https://stackoverflow.com/questions/19279490/can-i-fork-another-persons-repo-twice-into-my-own-account + +git clone http://github.com/RomRaider/RomRaider RomRaider_copy_2 +cd RomRaider_copy_2 +git remote remove origin +git remote add origin https://github.com/rusefi/RomRaider_copy_2.git +git push -u origin master + + + +