ParaView/Git/Download: Difference between revisions

From KitwarePublic
< ParaView‎ | Git
Jump to navigationJump to search
No edit summary
No edit summary
(One intermediate revision by one other user not shown)
Line 16: Line 16:
:<code>$ cd ParaView</code>
:<code>$ cd ParaView</code>
|align="center"|
|align="center"|
[http://www.kernel.org/pub/software/scm/git/docs/git-clone.html <code>git help clone</code>]
[http://schacon.github.com/git/git-clone.html <code>git help clone</code>]


[[Git/Trouble#Firewall_Blocks_Port_9418|Connection refused]]?
[[Git/Trouble#Firewall_Blocks_Port_9418|Connection refused]]?
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://schacon.github.com/git/git-pull.html <code>git help pull</code>]


[http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html <code>git help submodule</code>]
[http://schacon.github.com/git/git-submodule.html <code>git help submodule</code>]
|-
|-
|
|
Avoid making local changes unless you have read our [[ParaView/Git/Develop|developer instructions]].
Avoid making local changes unless you have read our [[ParaView/Git/Develop|developer instructions]].
|}
|}

Revision as of 14:22, 7 November 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.