VTK/Git: Difference between revisions

From KitwarePublic
< VTK
Jump to navigationJump to search
No edit summary
Line 5: Line 5:
=Experimental Repository=
=Experimental Repository=


We have published an ''experimental'' repository on public.kitware.com. '''WE REQUEST THAT NO ONE PUBLISH A CLONE OF THIS REPOSITORY AT AN ONLINE HOSTING SITE'''. This may or may not be the final version of history after conversion from CVS. It may be removed or rewritten at any time. We prefer to not have multiple incompatible histories out there. The final conversion will be available soon, at which point we may all begin sharing changes!  
We have published an ''experimental'' repository on vtk.org. '''WE REQUEST THAT NO ONE PUBLISH A CLONE OF THIS REPOSITORY AT AN ONLINE HOSTING SITE'''. This may or may not be the final version of history after conversion from CVS. It may be removed or rewritten at any time. We prefer to not have multiple incompatible histories out there. The final conversion will be available soon, at which point we may all begin sharing changes!  


One may browse the repository online using the [http://git.wiki.kernel.org/index.php/Gitweb Gitweb] interface at http://public.kitware.com/vtk-tmp.git/.
One may browse the repository online using the [http://git.wiki.kernel.org/index.php/Gitweb Gitweb] interface at http://vtk.org/vtk-tmp.git.


At the time of this writing the repository does not have branches and tags older than VTK 5.0.
At the time of this writing the repository does not have branches and tags older than VTK 5.0.
Line 16: Line 16:
One may clone the repository using [http://www.kernel.org/pub/software/scm/git/docs/git-clone.html git clone] through the native <code>git</code> protocol:
One may clone the repository using [http://www.kernel.org/pub/software/scm/git/docs/git-clone.html git clone] through the native <code>git</code> protocol:


  $ git clone git://public.kitware.com/vtk-tmp.git VTK
  $ git clone git://vtk.org/vtk-tmp.git VTK


or through the (less efficient) <code>http</code> protocol:
or through the (less efficient) <code>http</code> protocol:


  $ git clone http://public.kitware.com/vtk-tmp.git VTK
  $ git clone http://vtk.org/vtk-tmp.git VTK


All further commands work inside the local copy of the repository created by the clone:
All further commands work inside the local copy of the repository created by the clone:
Line 45: Line 45:
=Publishing=
=Publishing=


Authorized developers may publish work directly to <code>public.kitware.com/vtk-tmp.git</code> using Git's SSH protocol.
Authorized developers may publish work directly to <code>vtk.org/vtk-tmp.git</code> using Git's SSH protocol.


==Authentication==
==Authentication==


All publishers share the <code>git@public.kitware.com</code> account but each uses a unique ssh key for authentication.
All publishers share the <code>git@vtk.org</code> account but each uses a unique ssh key for authentication.
To request access, fill out the [https://www.kitware.com/Admin/SendPassword.cgi Kitware Password] form.
To request access, fill out the [https://www.kitware.com/Admin/SendPassword.cgi Kitware Password] form.
Include your ssh public key and a reference to someone our administrators may contact to verify your privileges.
Include your ssh public key and a reference to someone our administrators may contact to verify your privileges.


Note that ''we may not grant all contributors push access'' to the <code>public.kitware.com</code> repository.
Note that ''we may not grant all contributors push access'' to the <code>vtk.org</code> repository.
The distributed nature of Git allows contributors to retain authorship credit even if they do not publish changes directly.
The distributed nature of Git allows contributors to retain authorship credit even if they do not publish changes directly.
'''After the final conversion to Git''' is finished we will consider pull requests from online Git hosting sites.
'''After the final conversion to Git''' is finished we will consider pull requests from online Git hosting sites.
Line 63: Line 63:
but may not [http://www.kernel.org/pub/software/scm/git/docs/git-push.html push] changes to it.
but may not [http://www.kernel.org/pub/software/scm/git/docs/git-push.html push] changes to it.


In order to publish new commits in the <code>public.kitware.com</code> repository, developers must configure a ''push URL'' for the <code>origin</code>.
In order to publish new commits in the <code>vtk.org</code> repository, developers must configure a ''push URL'' for the <code>origin</code>.
Use [http://www.kernel.org/pub/software/scm/git/docs/git-config.html git config] to specify an ssh-protocol URL:
Use [http://www.kernel.org/pub/software/scm/git/docs/git-config.html git config] to specify an ssh-protocol URL:


  $ git config remote.origin.pushurl git@public.kitware.com:vtk-tmp.git
  $ git config remote.origin.pushurl git@vtk.org:vtk-tmp.git


(Note that 'pushurl' requires Git >= 1.6.4.  Use just 'url' for Git < 1.6.4.)
(Note that 'pushurl' requires Git >= 1.6.4.  Use just 'url' for Git < 1.6.4.)


Once your push URL is configured and your key is installed for <code>git@public.kitware.com</code> then you can try pushing changes.
Once your push URL is configured and your key is installed for <code>git@vtk.org</code> then you can try pushing changes.


=Resources=
=Resources=

Revision as of 17:35, 29 March 2010

VTK version tracking and development will be hosted by Git.

Experimental Repository

We have published an experimental repository on vtk.org. WE REQUEST THAT NO ONE PUBLISH A CLONE OF THIS REPOSITORY AT AN ONLINE HOSTING SITE. This may or may not be the final version of history after conversion from CVS. It may be removed or rewritten at any time. We prefer to not have multiple incompatible histories out there. The final conversion will be available soon, at which point we may all begin sharing changes!

One may browse the repository online using the Gitweb interface at http://vtk.org/vtk-tmp.git.

At the time of this writing the repository does not have branches and tags older than VTK 5.0. Conversion of older branches and tags from CVS will be completed later and added.

Cloning

One may clone the repository using git clone through the native git protocol:

$ git clone git://vtk.org/vtk-tmp.git VTK

or through the (less efficient) http protocol:

$ git clone http://vtk.org/vtk-tmp.git VTK

All further commands work inside the local copy of the repository created by the clone:

$ cd VTK


Development

We provide here a brief introduction to development with Git. See the Resources below for further information.

First, use git config to introduce yourself to Git:

$ git config --global user.name "Your Name"
$ git config --global user.email "you@yourdomain.com"

Optionally enable color output from Git commands:

$ git config --global color.ui auto

The --global option stores the configuration settings in ~/.gitconfig in your home directory so that they apply to all repositories.

Publishing

Authorized developers may publish work directly to vtk.org/vtk-tmp.git using Git's SSH protocol.

Authentication

All publishers share the git@vtk.org account but each uses a unique ssh key for authentication. To request access, fill out the Kitware Password form. Include your ssh public key and a reference to someone our administrators may contact to verify your privileges.

Note that we may not grant all contributors push access to the vtk.org repository. The distributed nature of Git allows contributors to retain authorship credit even if they do not publish changes directly. After the final conversion to Git is finished we will consider pull requests from online Git hosting sites.

Pushing

Git automatically configures a new clone to refer to its origin through a remote called origin. Initially one may fetch or pull changes from origin, but may not push changes to it.

In order to publish new commits in the vtk.org repository, developers must configure a push URL for the origin. Use git config to specify an ssh-protocol URL:

$ git config remote.origin.pushurl git@vtk.org:vtk-tmp.git

(Note that 'pushurl' requires Git >= 1.6.4. Use just 'url' for Git < 1.6.4.)

Once your push URL is configured and your key is installed for git@vtk.org then you can try pushing changes.

Resources

Additional information about Git may be obtained at these sites: