Sebastian Hahn commited on 2010-07-29 16:52:39
Zeige 1 geänderte Dateien mit 7 Einfügungen und 4 Löschungen.
Explain that TORGIT needs to point to the .git subdirectory in your clone. Thanks Erinn for your input.
... | ... |
@@ -1,22 +1,25 @@ |
1 | 1 |
# Directions for building the website: |
2 | 2 |
# |
3 |
-# 1. Clone the Tor git repository, switch to branch maint-0.2.1, and |
|
3 |
+# 1. Clone the Tor git repository, switch to branch release-0.2.1, and |
|
4 | 4 |
# make TORSVNSTABLE point to it: |
5 | 5 |
# |
6 | 6 |
# git clone git://git.torproject.org/tor/ tor-stable |
7 |
-# cd tor-stable && git checkout maint-0.2.1 |
|
7 |
+# cd tor-stable && git checkout release-0.2.1 |
|
8 | 8 |
# |
9 | 9 |
# 2. Clone the Tor git repository again and make TORGIT point to it: |
10 | 10 |
# |
11 | 11 |
# git clone git://git.torproject.org/tor/ tor |
12 | 12 |
# |
13 |
+# note that you need to either make this a bare repository or point |
|
14 |
+# TORGIT to the .git subdirectory in your clone. |
|
15 |
+# |
|
13 | 16 |
# 3. Edit include/versions.wmi or others if you like |
14 | 17 |
# 4. Update STABLETAG and DEVTAG below if there is a new git tag |
15 | 18 |
# 5. make |
16 | 19 |
# 6. ./publish |
17 | 20 |
|
18 |
-#TORSVNSTABLE = /path/to/your/tor/stable |
|
19 |
-#TORGIT = /path/to/your/tor/master |
|
21 |
+TORSVNSTABLE = /path/to/your/tor/stable |
|
22 |
+TORGIT = /path/to/your/tor/master/.git |
|
20 | 23 |
STABLETAG = tor-0.2.1.26 |
21 | 24 |
DEVTAG = tor-0.2.2.13-alpha |
22 | 25 |
|
23 | 26 |