ParaView/Git/Maintain

From KitwarePublic
< ParaView‎ | Git
Revision as of 00:42, 28 September 2012 by Utkarsh (talk | contribs)
Jump to navigationJump to search


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

Merging next topics into master

Before you begin, perform initial setup:

1.

2.

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

3.

$ ./Utilities/SetupForDevelopment.sh

Miscellaneous Commands

  • Show branches merged in next or master on stage
$ git fetch stage -p
$ git branch -r --merged stage/next | grep stage
$ git branch -r --merged stage/master | grep stage
  • Find the SHA1 for the VTK submodule that a branch is referring to.
$ git ls-tree <branchname> VTK | awk '{print $3}'