Difference between revisions of "Documentation/4.2/Developers/Tutorials/BuildTestPackageDistributeExtensions"

From Slicer Wiki
Jump to: navigation, search
(Change originally contributed by Francois Budin on the Nightly page)
m (Change originally contributed by Andriy Fedorov on the Nightly page)
Line 24: Line 24:
 
* Update the master branch of both your local clone and your online ExtensionsIndex fork
 
* Update the master branch of both your local clone and your online ExtensionsIndex fork
 
<pre>
 
<pre>
git add upstream git://github.com/Slicer/ExtensionsIndex  # Add reference to the authoritative ExtensionsIndex
+
git remote add upstream git://github.com/Slicer/ExtensionsIndex  # Add reference to the authoritative ExtensionsIndex
git fetch upstream                                         # Fetch change of the authoritative ExtensionsIndex
+
git fetch upstream                                               # Fetch change of the authoritative ExtensionsIndex
git checkout master                                       # Checkout master
+
git checkout master                                               # Checkout master
git reset --hard upstream/master                           # Reset your local master branch using the authoritative master  
+
git reset --hard upstream/master                                 # Reset your local master branch using the authoritative master  
git push origin master                                     # Update the master branch of your online fork
+
git push origin master                                           # Update the master branch of your online fork
 
</pre>
 
</pre>
 
* Create a branch named update-<YourExtensionName> in the clone of your forked ExtensionsIndex
 
* Create a branch named update-<YourExtensionName> in the clone of your forked ExtensionsIndex
Line 47: Line 47:
 
* Update the 4.2.0 branch of both your local clone and your online ExtensionsIndex fork
 
* Update the 4.2.0 branch of both your local clone and your online ExtensionsIndex fork
 
<pre>
 
<pre>
git add upstream git://github.com/Slicer/ExtensionsIndex  # Add reference to the authoritative ExtensionsIndex
+
git remote add upstream git://github.com/Slicer/ExtensionsIndex  # Add reference to the authoritative ExtensionsIndex
git fetch upstream                                         # Fetch change of the authoritative ExtensionsIndex
+
git fetch upstream                                               # Fetch change of the authoritative ExtensionsIndex
git checkout 4.2.0                                         # Checkout 4.2.0
+
git checkout 4.2.0                                               # Checkout 4.2.0
git reset --hard upstream/4.2.0                           # Reset your local 4.2.0 branch using the authoritative 4.2.0  
+
git reset --hard upstream/4.2.0                                   # Reset your local 4.2.0 branch using the authoritative 4.2.0  
git push origin 4.2.0                                     # Update the 4.2.0 branch of your online fork
+
git push origin 4.2.0                                             # Update the 4.2.0 branch of your online fork
 
</pre>
 
</pre>
 
* Create a branch named update-<YourExtensionName>-4.2.0 in the clone of your forked ExtensionsIndex
 
* Create a branch named update-<YourExtensionName>-4.2.0 in the clone of your forked ExtensionsIndex

Revision as of 14:04, 7 December 2012

Home < Documentation < 4.2 < Developers < Tutorials < BuildTestPackageDistributeExtensions

Create a new extension and adding it to the extension index

See instructions on github

Obtain an API key to submit on the extension server

See instructions on github

Upload an extension in the experimental folder

See instructions on github

Contribute an extension description file

Requesting an extension version update   UPDATED

On your local fork, the idea is to create the following topic branches:

  • update-<YourExtensionName> based of master integration branch.
  • update-<YourExtensionName>-4.2.0 based of 4.2.0 integration branch.

Extensions build against Slicer trunk

The following instruction describes how to contribute extension description file updates for an extension being built against slicer trunk.

  • Update the master branch of both your local clone and your online ExtensionsIndex fork
git remote add upstream git://github.com/Slicer/ExtensionsIndex   # Add reference to the authoritative ExtensionsIndex
git fetch upstream                                                # Fetch change of the authoritative ExtensionsIndex
git checkout master                                               # Checkout master
git reset --hard upstream/master                                  # Reset your local master branch using the authoritative master 
git push origin master                                            # Update the master branch of your online fork
  • Create a branch named update-<YourExtensionName> in the clone of your forked ExtensionsIndex
git checkout -b update-<YourExtensionName>

Extensions build against Slicer 4.10

The following instruction describes how to contribute extension description file updates for an extension being built against slicer trunk.

  • Update the 4.2.0 branch of both your local clone and your online ExtensionsIndex fork
git remote add upstream git://github.com/Slicer/ExtensionsIndex   # Add reference to the authoritative ExtensionsIndex
git fetch upstream                                                # Fetch change of the authoritative ExtensionsIndex
git checkout 4.2.0                                                # Checkout 4.2.0
git reset --hard upstream/4.2.0                                   # Reset your local 4.2.0 branch using the authoritative 4.2.0 
git push origin 4.2.0                                             # Update the 4.2.0 branch of your online fork
  • Create a branch named update-<YourExtensionName>-4.2.0 in the clone of your forked ExtensionsIndex
git checkout -b update-<YourExtensionName>-4.2.0