ParaView/Git: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Replaced content with "The instructions previously available on this page have been superseded. See [https://gitlab.kitware.com/paraview/paraview/blob/master/Documentation/dev/git/README.md here].")
 
Line 1: Line 1:
==Introduction==
The instructions previously available on this page have been supersededSee [https://gitlab.kitware.com/paraview/paraview/blob/master/Documentation/dev/git/README.md here].
 
ParaView version tracking and development is hosted by [http://git-scm.com Git].
Please select a task for further instructions:
 
{|border="0"
|-
|width=70%|
Main Tasks:
|-
|
:*<span style="font-size: 1.5em">[[Git/Download|Install Git]]</span> - Git 1.6.5 or greater is preferred
|-
|
:*<span style="font-size: 1.5em">[[ParaView/Git/Download|Download ParaView]] - Users start here</span>
|-
|
:*<span style="font-size: 1.5em">[[ParaView/Git/Develop|Develop ParaView]] - Contributors start here</span>
|-
|
:*<span style="font-size: 1.5em">[[ParaView/Git/Maintain|Maintain ParaView]] - Maintainers start here</span>
|-
|
Other Tasks:
|-
|
:*<span style="font-size: 1.5em">[[Git/Resources|Learn Git]]</span> - Third-party documentation
|}
 
''The remainder of this page provides reference information and linksIt is not intended to provide instructions.''
 
==Repositories==
 
One may browse the repositories online using the [http://git.wiki.kernel.org/index.php/Gitweb Gitweb] interface at http://paraview.org/gitweb.
 
{|border="1" cellspacing="0" cellpadding="3"
!Repository
!Purpose
!Access
!URL
|-
|rowspan=3|<code>ParaView.git</code>
|rowspan=3|ParaView
|clone (git)
|<code>git://paraview.org/ParaView.git</code>
|-
|clone (http)
|<code>http://paraview.org/ParaView.git</code>
|-
|push (ssh)
|<code>git@paraview.org:ParaView.git</code>
|-
|rowspan=3|<code>ParaViewData.git</code>
|rowspan=3|ParaViewData
|clone (git)
|<code>git://paraview.org/ParaViewData.git</code>
|-
|clone (http)
|<code>http://paraview.org/ParaViewData.git</code>
|-
|push (ssh)
|<code>git@paraview.org:ParaViewData.git</code>
|-
|rowspan=3|<code>stage/ParaView.git</code>
|rowspan=3|ParaView Topic Stage
|fetch (git)
|<code>git://paraview.org/stage/ParaView.git</code>
|-
|fetch (http)
|<code>http://paraview.org/stage/ParaView.git</code>
|-
|push (ssh)
|<code>git@paraview.org:stage/ParaView.git</code>
|-
|rowspan=3|<code>PVVTK.git</code>
|rowspan=3|PVVTK Topic Stage
|fetch (git)
|<code>git://paraview.org/PVVTK.git</code>
|-
|fetch (http)
|<code>http://paraview.org/PVVTK.git</code>
|-
|push (ssh)
|<code>git@paraview.org:PVVTK.git</code>
|-
|rowspan=3|<code>ParaViewSuperbuild.git</code>
|rowspan=3|ParaView Super-Build
|fetch (git)
|<code>git://paraview.org/ParaViewSuperbuild.git</code>
|-
|fetch (http)
|<code>http://paraview.org/ParaViewSuperbuild.git</code>
|-
|push (ssh)
|<code>git@paraview.org:ParaViewSuperbuild.git</code>
|}
 
==Branches==
 
At the time of this writing the <code>ParaView.git</code> repository has the following branches:
 
* '''release''': Release maintenance; bug fixes only
* '''master''': Release preparation; starting point for new features (default)
* '''next''': Development; new features published here first
* '''nightly-master''': Follows '''master''', updated at 01:00 UTC
* '''nightly-next''': Follows '''next''', updated at 01:00 UTC
* '''hooks''': Local commit hooks ([[Git/Hooks#Local|place]] in .git/hooks)
 
Release branches converted from CVS have been artificially merged into master.
Actual releases have tags named by the release version number.

Latest revision as of 12:29, 20 March 2015

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