git docs
This commit is contained in:
parent
7b3ff90e23
commit
6c3cba4d64
|
@ -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
|
Loading…
Reference in New Issue