Changes between Version 5 and Version 6 of GitRepo


Ignore:
Timestamp:
09/06/2010 11:17:26 PM (14 years ago)
Author:
johnnyg
Comment:

Remove submodule stuff, add cgit link

Legend:

Unmodified
Added
Removed
Modified
  • GitRepo

    v5 v6  
    33Deluge's source code is always available through our [/browser git repository]. 
    44 
    5 To get a copy of the code, you will need to clone it from the repository, but before doing so you will need to decide on which branch to checkout. 
     5To get a copy of the code, you will need to clone it from the repository. 
    66 
    77Once you clone the code, you may want to see ['Installing/Source']. 
     
    1717This will create a deluge/ directory with a copy of the repo. 
    1818 
    19 We will also want to update the submodules which includes libtorrent. 
    20  
    21 {{{ 
    22 git submodule init 
    23 git submodule update 
    24 }}} 
    25  
    2619== Selecting Branch == 
    2720 
    28 There are multiple branches or tags that you can choose from, but the main two will be the current stable branch and the development branch.  You can always browse the entire repository [/browser here]. 
     21There are multiple branches or tags that you can choose from, but the main two will be the current stable branch and the development branch.  You can always browse the entire repository [http://git.deluge-torrent.org/ here]. 
    2922 
    3023List the branches: 
     
    4841 
    4942== Updating == 
     43 
    5044You only need to do a clone once, after that you can simply update the branch by ''pulling'' changes from the repo. 
    5145 
     
    5347{{{ 
    5448git pull 
    55 git submodule update 
    5649}}} 
    5750