Changes between Version 16 and Version 17 of notes/git


Ignore:
Timestamp:
2022-01-10T12:06:58Z (3 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/git

    v16 v17  
    9999}}}
    100100
     101=== [https://stackoverflow.com/questions/3796927 clone]
     102{{{#!bash
     103git clone --recursive source destination
     104}}}
     105{{{#!bash
     106git clone --recurse-submodules source destination
     107}}}
     108{{{#!bash
     109git clone git://github.com/foo/bar.git
     110cd bar
     111git submodule update --init --recursive
     112}}}
     113
    101114== delete remote tracking branch
    102115{{{#!bash