Browse Source

README: Rewrite development section and add note about updating the code.

Georgi Chorbadzhiyski 12 years ago
parent
commit
6aa40e99df
1 changed files with 12 additions and 9 deletions
  1. 12
    9
      README

+ 12
- 9
README View File

@@ -91,25 +91,28 @@ Misc options:
91 91
 
92 92
 Development
93 93
 ===========
94
-The development is tracked using git. The repository is hosted at github
95
-to get it, run the following command:
94
+The development is done using git. tsdecrypt repository is hosted
95
+at http://github.com/gfto/tsdecrypt
96
+
97
+To clone the repository issue the following commands:
96 98
 
97 99
    git clone git://github.com/gfto/tsdecrypt.git
98 100
    git submodule init
99 101
    git submodule update
102
+   make
100 103
 
101 104
 The code is developed and tested under modern Linux. It is also
102 105
 compiled from time to time under OS X but is not tested there.
103 106
 
104
-Compiling
105
-=========
106
-Clone git repository, initialize submodules and the run make.
107
+Updating the code
108
+=================
109
+To update cloned tsdecrypt, go to the directory where the repository
110
+is cloned and run the following commands:
107 111
 
108
-   git clone git://github.com/gfto/tsdecrypt.git
109
-   git submodule init
112
+   git fetch origin
113
+   git merge origin/master
110 114
    git submodule update
111
-   make
112
-   make install
115
+   make distclean all
113 116
 
114 117
 Examples
115 118
 ========

Loading…
Cancel
Save