This commit is contained in:
rusefi 2017-03-31 13:46:32 -04:00
parent 7b3ff90e23
commit 6c3cba4d64
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