Changes between Version 1 and Version 2 of notes/git


Ignore:
Timestamp:
2015-06-17T09:53:07Z (9 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/git

    v1 v2  
    1818git remote add ... дописать :)
    1919}}}
     20== синхронизация всех веток в bare репозиториях
     21{{{#!bash
     22git clone --bare url local.git
     23cd local.git
     24git config --add remote.origin.fetch '+refs/*:refs/*'
     25git fetch
     26}}}