<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to RepositoryInstructions</title><link>https://sourceforge.net/p/odtbx/wiki/RepositoryInstructions/</link><description>Recent changes to RepositoryInstructions</description><atom:link href="https://sourceforge.net/p/odtbx/wiki/RepositoryInstructions/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 08 Jul 2014 17:34:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/odtbx/wiki/RepositoryInstructions/feed" rel="self" type="application/rss+xml"/><item><title>RepositoryInstructions modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/odtbx/wiki/RepositoryInstructions/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="od-toolbox-git-repository-instructions"&gt;OD Toolbox Git Repository Instructions&lt;/h1&gt;
&lt;p&gt;See the &lt;span&gt;[ForDevelopers]&lt;/span&gt; page for information on Git client requirements. A tutorial of using Git to work with ODTBX is given in the &lt;a href="https://sourceforge.net/projects/odtbx/files/Docs%20and%20Tutorials/" class=""&gt;Git Tutorial&lt;/a&gt; presentation. &lt;/p&gt;
&lt;h2 id="access"&gt;Access&lt;/h2&gt;
&lt;p&gt;Anyone with a SourceForge account may clone the &lt;a href="https://sourceforge.net/p/odtbx/git" class=""&gt;OD Toolbox Git repository&lt;/a&gt; with read-only access. To contribute code to ODTBX, please contact an ODTBX admin and see the &lt;a href="https://sourceforge.net/projects/odtbx/files/Docs%20and%20Tutorials/" class=""&gt;Contributors&lt;/a&gt; presentation for your operating system. &lt;/p&gt;
&lt;h2 id="od-toolbox-repository-checkout"&gt;OD Toolbox Repository Checkout&lt;/h2&gt;
&lt;p&gt;The OD Toolbox Git repository can be downloaded using a valid SourceForge username: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;git&lt;/span&gt; &lt;span class="n"&gt;clone&lt;/span&gt; &lt;span class="n"&gt;ssh&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="c1"&gt;//username@git.code.sf.net/p/odtbx/git odtbx-git&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id="layout"&gt;Layout&lt;/h3&gt;
&lt;p&gt;As of Oct 2012, the repository's general directory layout is: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;odtbx&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
  &lt;span class="n"&gt;Doc&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
  &lt;span class="n"&gt;ODTBX_Data&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
  &lt;span class="n"&gt;ODTBX_Source&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
  &lt;span class="n"&gt;Regression_Validation&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;vendor&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
  &lt;span class="n"&gt;Jat&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
  &lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="n"&gt;Mice&lt;/span&gt;&lt;span class="err"&gt;*/&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;odtbx&lt;/strong&gt; is the location of the most up-to-date OD Toolbox code. &lt;br /&gt;
&lt;strong&gt;odtbx/Doc/&lt;/strong&gt; contains documentation for OD Toolbox models and algorithms. &lt;br /&gt;
&lt;strong&gt;odtbx/ODTBX_Data/&lt;/strong&gt; contains specific data models.&lt;br /&gt;
&lt;strong&gt;odtbx/ODTBX_Source/&lt;/strong&gt; contains the OD Toolbox source code.&lt;br /&gt;
&lt;strong&gt;odtbx/Regression_Validation/&lt;/strong&gt; contains the regression testing framework for OD Toolbox. &lt;br /&gt;
Some good guidelines for odtbx are:&lt;br /&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Only the most up-to-date copy of the code will be stored here. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No developer shall commit changes to the code without coordination with the lead developer. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No developer shall merge any branches or copy any code without coordination with the lead developer. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;vendor&lt;/strong&gt; holds files that are provided by an external project, or vendor, and are used in current development. Currently it holds the different platform variants of MICE. However, they are all the same version of mice and match one of the tagged vendor versions. &lt;/p&gt;
&lt;p&gt;In addition to the physical file layout, the Git repository contains branches and tags. &lt;/p&gt;
&lt;p&gt;Branches contain significant development efforts that need to occur without disturbing the main development branch (called 'master'). Uses for branches include:&lt;br /&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Development of specific functionality, such as &lt;em&gt;consider&lt;/em&gt;,&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Significant structural changes, such as &lt;em&gt;mar08reorg&lt;/em&gt;,&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Significant code merging and testing, such as &lt;em&gt;consider_merge&lt;/em&gt;,&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Important code that should be preserved, such as Mike Moreau's &lt;em&gt;gpstools&lt;/em&gt;,&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Code that should not be released as part of ODTBX, such as the &lt;em&gt;gps_yaw&lt;/em&gt;,&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;or development of an Increment (if deemed necessary by the lead developer).&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Some good guidelines for branches are:&lt;br /&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Only the lead developer creates or removes a branch.&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Branches are made from a specific point on the master branch.&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Only the developer or developers for whom the branch was created will commit changes to the branch. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Only work which has been rigorously tested will be merged back into the master branch. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The lead developer controls the coordination and timing of merging data from the branch back into the master branch.&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Branches are generally temporary and should either be deleted or merged as soon as the work is stopped or finished. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Tags are used to &lt;em&gt;label and record&lt;/em&gt; significant snapshots of the codebase. Some good guidelines for tags are:&lt;br /&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;A tag is created only at the direction of the lead developer.&lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Releases will only be tagged once they have been rigorously tested, attached to an installer for users and demonstrated. &lt;br /&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="jat-repository"&gt;JAT Repository&lt;/h2&gt;
&lt;p&gt;A copy of JAT is located in the vendor/Jat/ subdirectory. This is a mirror of the main JAT development repository and is read-only. If there are JAT changes to be committed and you don't have access to the pub1 repo then coordinate them with the lead developer to get the changes committed. Most ODTBX developers would probably fall into this category.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;JAT is currently hosted on SourceForge at: &lt;a href="https://sourceforge.net/projects/jat"&gt;https://sourceforge.net/projects/jat/&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="layout_1"&gt;Layout&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;NOTE: This section needs to be updated! &lt;/strong&gt; &lt;br /&gt;
&lt;strong&gt;NOTE: JAT is used by multiple projects! &lt;/strong&gt; &lt;br /&gt;
This means that for OD Toolbox the use of the trunk and branches is different than the OD Toolbox repository.&lt;/p&gt;
&lt;p&gt;As of October 2012, the current JAT repository layout is: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;branches&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;branches&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;ODTBX&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;DE405&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;external_jar&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;media_files&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;tags&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;tags&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;ODTBX&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;span class="n"&gt;tags&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;ODTBX&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;Releases&lt;/span&gt;
&lt;span class="n"&gt;trunk&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;branches&lt;/strong&gt; are used to segregate different JAT development efforts. The OD Toolbox project insulates itself from unexpected JAT changes by concentrating its JAT use and development in &lt;strong&gt;branches/ODTBX/&lt;/strong&gt;. Some individual developers may also retain their own branches for separate work. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DE405&lt;/strong&gt; holds the DE405 raw data files from JPL. This is required by those using the JAT trunk but is not required for OD Toolbox. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;external_jar&lt;/strong&gt; is similar to the OD Toolbox vendor directory. It contains jar files that some parts of JAT depend upon, however no current OD Toolbox functionality requires these external jar files. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;media_files&lt;/strong&gt; hold sound and image files for use by JAT. Currently, no OD Toolbox functionality requires this. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tags&lt;/strong&gt; hold significant JAT revisions. &lt;strong&gt;tags/ODTBX/Releases&lt;/strong&gt; contains snapshots of JAT used for OD Toolbox releases starting with release 2.0. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;trunk&lt;/strong&gt; the mainline JAT development for other projects, but not for use on OD Toolbox. &lt;/p&gt;
&lt;h3 id="checkout-for-development"&gt;Checkout for Development&lt;/h3&gt;
&lt;p&gt;All necessary JAT components are included with the OD Toolbox Git repository. In particular, the folders of interest are:&lt;br /&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;vendor/Jat/jat/ &lt;/li&gt;
&lt;li&gt;vendor/Jat/external_jar/ &lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;h3 id="navigation"&gt;Navigation&lt;/h3&gt;
&lt;p&gt;&lt;span&gt;[ForDevelopers]&lt;/span&gt; - Go back to the main development page &lt;/p&gt;
&lt;p&gt;&lt;a href="/p/odtbx/wiki/Home/" class=""&gt;WikiStart&lt;/a&gt; - Go back to OD Toolbox Home &lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 08 Jul 2014 17:34:38 -0000</pubDate><guid>https://sourceforge.net947cebcd015da2df5bb0fdd97852bcc3e6e127d5</guid></item></channel></rss>