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