Installing latest code » History » Version 1
Romain Vrignaud, 11/17/2011 08:55 AM
1 | 1 | Romain Vrignaud | h1. Installing latest code |
---|---|---|---|
2 | |||
3 | Latest stable version can be found under the files section |
||
4 | |||
5 | h2. Latest source code |
||
6 | |||
7 | You can get the latest source code of Foreman from the git repository hosted at github. |
||
8 | This is the preferred way to get Foreman if you want to benefit from the latest improvements. By using the git repository you can also upgrade more easily. |
||
9 | |||
10 | to get latest "development" version do: |
||
11 | |||
12 | <pre><code>git clone git://github.com/ohadlevy/foreman.git foreman |
||
13 | cd foreman |
||
14 | git submodule init |
||
15 | git submodule update |
||
16 | </code></pre> |
||
17 | |||
18 | * if you are behind a proxy or firewall and dont have access to github using the git protocol, use http protocol instead (e.g.) |
||
19 | <pre> |
||
20 | git clone http://github.com/ohadlevy/foreman.git foreman |
||
21 | cd foreman |
||
22 | sed -i 's/git:\/\//http:\/\//g' .gitmodules |
||
23 | git submodule init |
||
24 | git submodule update |
||
25 | </pre> |
||
26 | |||
27 | h3. Daily snapshot |
||
28 | |||
29 | You can also fetch the latest daily snapshot of the development version at: |
||
30 | http://theforeman.org/foreman-nightly.tar.bz2 |