Merge branch 'master' into fresh_chibios_2nd

This commit is contained in:
rusefi 2017-04-01 22:33:39 -04:00
commit 1f90a67e41
1 changed files with 23 additions and 0 deletions

23
misc/git_cheat_sheet.txt Normal file
View File

@ -0,0 +1,23 @@
=========================================
New remote tag:
git tag -a TAGNAME -m "tag TAGNAME"
git push origin TAGNAME
=========================================
New remote branch:
git checkout -b BRANCHNAME
git push -u origin BRANCHNAME
=========================================
Download submodules:
git submodule update --init
=========================================
Refresh submodules:
git submodule update --recursive --remote