Changes between Initial Version and Version 1 of doc/getSources


Ignore:
Timestamp:
07/08/09 11:06:45 (15 years ago)
Author:
iNode
Comment:

translate getSources page from russian

Legend:

Unmodified
Added
Removed
Modified
  • doc/getSources

    v1 v1  
     1= Get the sources = 
     2 
     3== Clone whole repo == 
     4 
     5Use command: 
     6{{{ 
     7git clone git://midnight-commander.org/git/mc.git 
     8}}} 
     9 
     10You can also use this command if you has only limited proxy/firewalled connection: 
     11{{{ 
     12git clone http://git.midnight-commander.org/mc.git 
     13}}} 
     14 
     15=== Mirrors === 
     16 
     17 
     18You also can clone repo from the mirrors: 
     19 
     20==== repo.or.cz ==== 
     21{{{ 
     22git clone git://repo.or.cz/midnight-commander.git 
     23}}} 
     24if you has only limited proxy/firewalled connection: 
     25{{{ 
     26git clone http://repo.or.cz/r/midnight-commander.git  
     27}}} 
     28 
     29That command create local copy of source repository on you machine. 
     30 
     31== Update local repository == 
     32 
     33Use this command to pull changes from server: 
     34{{{ 
     35git pull 
     36}}}