ParaView/Git/Download: Difference between revisions

From KitwarePublic
< ParaView‎ | Git
Jump to navigationJump to search
No edit summary
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This page documents how to download ParaView through [http://git-scm.com Git].
The instructions previously available on this page have been superseded. See [https://gitlab.kitware.com/paraview/paraview/blob/master/Documentation/dev/git/download.md here].
See our [[ParaView/Git|table of contents]] for more information.
 
Follow our [[Git/Download|Git download instructions]] to install Git.
We require Git 1.6.5 or higher.
 
=Clone=
 
{| style="width: 100%"
|-
|width=60%|
Clone ParaView using the commands
|-
|
:<code>$  git clone --recursive git://paraview.org/ParaView.git</code>
:<code>$ cd ParaView</code>
|align="center"|
[http://www.kernel.org/pub/software/scm/git/docs/git-clone.html <code>git help clone</code>]
 
[[Git/Trouble#Firewall_Blocks_Port_9418|Connection refused]]?
|}
 
=Update=
 
{| style="width: 100%"
|-
|width=60%|
Users that have made no local changes and simply want to update a
clone with the latest changes may run
|-
|
:<code>$ git pull</code>
:<code>$ git submodule update</code>
|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-submodule.html <code>git help submodule</code>]
|-
|
Avoid making local changes unless you have read our [[ParaView/Git/Develop|developer instructions]].
|}

Latest revision as of 12:28, 20 March 2015

The instructions previously available on this page have been superseded. See here.