This commit is contained in:
rusefi 2017-05-03 11:56:59 -04:00
parent ef90ec86ab
commit 6f31eed86a
1 changed files with 19 additions and 0 deletions

View File

@ -21,3 +21,22 @@ git submodule update --init
Refresh submodules:
git submodule update --recursive --remote
=========================================
Generate diff of specific commit
git diff COMMIT^ COMMIT
(this generates diff between previous to COMMIT and COMMIT)
=========================================
https://help.github.com/articles/configuring-a-remote-for-a-fork/
git remote -v
git remote add upstream https://github.com/ChibiOS/ChibiOS.git
git remote -v
=========================================
https://help.github.com/articles/syncing-a-fork/