You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2017/10/09 23:58:45 UTC

[11/13] isis-site git commit: ISIS-1465: aggregated hints-n-tips, and updated cheat sheet

http://git-wip-us.apache.org/repos/asf/isis-site/blob/48a05cd4/content/guides/dg/dg.html
----------------------------------------------------------------------
diff --git a/content/guides/dg/dg.html b/content/guides/dg/dg.html
index 148cecb..f4d8fe4 100644
--- a/content/guides/dg/dg.html
+++ b/content/guides/dg/dg.html
@@ -2961,23 +2961,20 @@ git reset --hard <i>shaId</i>      # move master branch shaId of com
         <div class="sect2"> 
          <h3 id="_prerequisites">8.1. Prerequisites</h3> 
          <div class="paragraph"> 
-          <p>We recommend that you adopt a convention for your directories. For example, open source repositories (such as the Isis Addons and Incode Catalog mentioned above) reside in <a href="https://github.com/">github.com</a>, while your own proprietary code might reside in some other service, eg <a href="https://bitbucket.org/">bitbucket</a>. For example:</p> 
+          <p>We recommend that you adopt a convention for your directories. For example, open source repositories (such as Apache Isis itself or the Incode Platform) reside in <a href="https://github.com/">github.com</a>, while your own proprietary code might reside in some other service, eg <a href="https://bitbucket.org/">bitbucket</a>. For example:</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
            <pre class="CodeRay highlight"><code>/users/home/me/
     BITBUCKET/
         mycompany/
-            myapp-moduleA
-            myapp-moduleB
-            myapp
+            myapp/
+            otherapp/
     GITHUB/
-        isisaddons/
-            isis-module-docx
-            isis-module-security
+        apache/
+            isis/
         incodehq/
-            incode-module-commchannel
-            incode-module-classification</code></pre> 
+            incode-platform/</code></pre> 
           </div> 
          </div> 
         </div> 
@@ -2991,16 +2988,13 @@ git reset --hard &lt;i&gt;shaId&lt;/i&gt;      # move master branch shaId of com
            <pre class="CodeRay highlight"><code>#
 # our code
 #
-/users/home/me/BITBUCKET/mycompany/myapp-moduleA
-/users/home/me/BITBUCKET/mycompany/myapp-moduleB
 /users/home/me/BITBUCKET/mycompany/myapp
+/users/home/me/BITBUCKET/mycompany/otherapp
 #
 # open source modules
 #
-/users/home/me/GITHUB/isisaddons/isis-module-docx
-/users/home/me/GITHUB/isisaddons/isis-module-security
-/users/home/me/GITHUB/incodehq/incode-module-commchannel
-/users/home/me/GITHUB/incodehq/incode-module-classification</code></pre> 
+/users/home/me/GITHUB/apache/isis
+/users/home/me/GITHUB/incodehq/incode-platform</code></pre> 
           </div> 
          </div> 
         </div> 
@@ -3026,11 +3020,11 @@ git reset --hard &lt;i&gt;shaId&lt;/i&gt;      # move master branch shaId of com
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
-           <pre class="CodeRay highlight"><code data-lang="bash">repo doc</code></pre> 
+           <pre class="CodeRay highlight"><code data-lang="bash">repo plat</code></pre> 
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>would switch to <code>/users/home/me/GITHUB/isisaddons/isis-module-docx</code>, the first module that matches the fragment.</p> 
+          <p>would switch to <code>/users/home/me/GITHUB/incodehq/incode-platform</code>, the first module that matches the fragment.</p> 
          </div> 
          <div class="paragraph"> 
           <p>Meanwhile:</p> 
@@ -3045,11 +3039,11 @@ git reset --hard &lt;i&gt;shaId&lt;/i&gt;      # move master branch shaId of com
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
-           <pre class="CodeRay highlight"><code data-lang="bash">foreach -g isisaddons git fetch</code></pre> 
+           <pre class="CodeRay highlight"><code data-lang="bash">foreach -g plat git fetch</code></pre> 
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>would perform a <code>git fetch</code> but only to those repositories which match "isisaddons" (<code>-g</code> flag standing for <code>grep</code>).</p> 
+          <p>would perform a <code>git fetch</code> but only to those repositories which match "plat" (<code>-g</code> flag standing for <code>grep</code>).</p> 
          </div> 
          <div class="paragraph"> 
           <p>To load the functions into your profile (<code>.bashrc</code> or <code>.profile</code> or similar), use:</p>