VTK/Git/Dashboard: Difference between revisions

From KitwarePublic
< VTK‎ | Git
Jump to navigationJump to search
(Created page with "__NOTOC__ This page documents how to use the VTK '''dashboard''' branch in [http://git-scm.com Git]. See our table of contents for more information. ==Using the das...")
 
Line 40: Line 40:
  $ git format-patch origin/dashboard
  $ git format-patch origin/dashboard


And email the results to the developer's mailing list and Brad King.
And email the results to the developer's mailing list.

Revision as of 18:04, 20 May 2013


This page documents how to use the VTK dashboard branch in Git. See our table of contents for more information.

Using the dashboard scripts

The dashboard branch contains a dashboard client helper script. Use these commands to track it:

$ mkdir -p ~/Dashboards/VTKScripts
$ cd ~/Dashboards/VTKScripts
$ git init
$ git remote add -t dashboard origin git://vtk.org/VTK.git
$ git pull origin

The vtk_common.cmake script contains setup instructions in its top comments.

Update the dashboard branch to get the latest version of this script by simply running

$ git pull

Here is a link to the script as it appears today: vtk_common.cmake

Making changes to the dashboard scripts

If you find bugs in the hooks themselves or would like to add new features, the can be edited in the usual Git manner.

$ git checkout -b my_topic_branch

Make your edits, test it, and commit the result. Create a patch file with:

$ git format-patch origin/dashboard

And email the results to the developer's mailing list.