Difference between revisions of "How to get WRF-SFIRE"
(links) |
(download) |
||
Line 6: | Line 6: | ||
Developers with write | Developers with write | ||
− | access must push changes to the <tt>math.ucdenver.edu</tt> server. The following public, read-only mirrors are available for anyone else wanting to track the changes to the code. | + | access must push changes to the <tt>math.ucdenver.edu</tt> server. |
+ | |||
+ | ==Download== | ||
+ | |||
+ | We strongly recommend to use download by git, because it allows easy updates and identification of the state of all files in case of problems. The following public, read-only mirrors are available for anyone else wanting to track the changes to the code. | ||
;[http://github.com/jbeezley/wrf-fire/ http://github.com/jbeezley/wrf-fire/] | ;[http://github.com/jbeezley/wrf-fire/ http://github.com/jbeezley/wrf-fire/] | ||
:<tt><pre>git clone git://github.com/jbeezley/wrf-fire.git</pre></tt> | :<tt><pre>git clone git://github.com/jbeezley/wrf-fire.git</pre></tt> | ||
Line 13: | Line 17: | ||
The repository clone home pages allow you to browse the source code as well as examine changes and view the different development branches. | The repository clone home pages allow you to browse the source code as well as examine changes and view the different development branches. | ||
− | Read-only SVN access is available through the github mirror. | + | Read-only SVN access is also available through the github mirror. |
<code><pre>svn co http://svn.github.com/jbeezley/wrf-fire.git</pre></code> | <code><pre>svn co http://svn.github.com/jbeezley/wrf-fire.git</pre></code> | ||
It is also possible to download the latest source code as a | It is also possible to download the latest source code as a | ||
[[wikipedia:tar (file format)|tarball]] or [[wikipedia:zip (file format)|zip]] file from each mirror; however, this method is discouraged as it will be | [[wikipedia:tar (file format)|tarball]] or [[wikipedia:zip (file format)|zip]] file from each mirror; however, this method is discouraged as it will be | ||
difficult to update to the latest version. | difficult to update to the latest version. | ||
+ | |||
+ | ==Update== | ||
+ | |||
+ | You can update your files any time to the current version. If you have downloaded your copy by git, | ||
+ | |||
+ | <pre> | ||
+ | git checkout master; git pull | ||
+ | </pre> | ||
+ | |||
+ | Please be sure you work with the latest files before contacting us for support. | ||
==See also== | ==See also== |
Revision as of 22:24, 13 July 2010
The WRF-Fire source code is stored in a git repository hosted at the University of Colorado Denver's Center for Computational Mathematics. A git repository is a software version control system similar to CVS or SVN. In order to obtain the software from our repository, you must first download and install the git software.
Developers with write access must push changes to the math.ucdenver.edu server.
Download
We strongly recommend to use download by git, because it allows easy updates and identification of the state of all files in case of problems. The following public, read-only mirrors are available for anyone else wanting to track the changes to the code.
- http://github.com/jbeezley/wrf-fire/
git clone git://github.com/jbeezley/wrf-fire.git
- http://gitorious.org/wrf-fire
git clone git://gitorious.org/wrf-fire/mainline.git
The repository clone home pages allow you to browse the source code as well as examine changes and view the different development branches.
Read-only SVN access is also available through the github mirror.
svn co http://svn.github.com/jbeezley/wrf-fire.git
It is also possible to download the latest source code as a tarball or zip file from each mirror; however, this method is discouraged as it will be difficult to update to the latest version.
Update
You can update your files any time to the current version. If you have downloaded your copy by git,
git checkout master; git pull
Please be sure you work with the latest files before contacting us for support.