ParaView/Git/Download: Difference between revisions

From KitwarePublic
< ParaView‎ | Git
Jump to navigationJump to search
No edit summary
(→‎Update: Added --init to submodule update command to make sure new modules are check out as well)
Line 31: Line 31:
|
|
:<code>$ git pull</code>
:<code>$ git pull</code>
:<code>$ git submodule update</code>
:<code>$ git submodule update --init</code>
|align="center"|
|align="center"|
[http://www.kernel.org/pub/software/scm/git/docs/git-pull.html <code>git help pull</code>]
[http://www.kernel.org/pub/software/scm/git/docs/git-pull.html <code>git help pull</code>]

Revision as of 12:00, 16 August 2011

This page documents how to download ParaView through Git. See our table of contents for more information.

Follow our Git download instructions to install Git. We require Git 1.6.5 or higher.

Clone

Clone ParaView using the commands

$ git clone --recursive git://paraview.org/ParaView.git
$ cd ParaView

git help clone

Connection refused?

Update

Users that have made no local changes and simply want to update a clone with the latest changes may run

$ git pull
$ git submodule update --init

git help pull

git help submodule

Avoid making local changes unless you have read our developer instructions.