UNPKG

gluon-cli

Version:

Gluon cli: the gitflow and CI tool

222 lines (109 loc) 5.98 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Start working with Gluon!</title> <link rel="stylesheet" type="text/css" href="../../css/main.css"> <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script> </head> <body> <section class="docs"> <aside> <div class="logoContainer"> <a href="../../index.html"> <img src="../../images/logo.svg" class="logo" /> Gluon </a> </div> <ul class="main_menu"> <li> <h4>General</h4> <a href="../../users/get_started.html">How to install</a> <a href="../../users/get_started010whatis.html">What is gluon?</a> </li> <li> <h4>Tutorials</h4> <ul> <li> <a href="../../users/tutorials/000init.html" class="selected">Start working with Gluon!</a> </li> <li> <a href="../../users/tutorials/010feature.html">Working with Features</a> </li> <li> <a href="../../users/tutorials/020release.html">The Release process</a> </li> <li> <a href="../../users/tutorials/030hotfix.html">Make a Hotfix</a> </li> <li> <a href="../../users/tutorials/040merger.html">Merging master to develop</a> </li> <li> <a href="../../users/tutorials/050conflicts.html">Resolving conflicts with git</a> </li> <li> <a href="../../users/tutorials/060consolidate.html">Consolidate dependencies of master</a> </li> </ul> </li> <li> <h4>Guides</h4> <ul> <li> <a href="../../users/guides/001versioning.html">Versions between branches</a> </li> <li> <a href="../../users/guides/002readlogoutput.html">Reading log execution of Gluon</a> </li> <li> <a href="../../users/guides/003componentlifecycle.html">Component lifecycle using Gluon</a> </li> </ul> </li> <li> <h4>API</h4> <h5>FLOWS</h5> <ul> </ul> <h5>STEPS</h5> <ul> </ul> </li> </ul> </aside> <article> <h1 id="start-working-with-gluon-">Start working with <strong>Gluon</strong></h1> <p>First is necessary to create or configure develop. Execute</p> <pre><code>cells master:init </code></pre><p>The tool will ask for the type of the next release in order to set the next right version.</p> <pre><code class="lang-bash">? Choose next release change (Use arrow keys) major minor ❯ patch </code></pre> <p><strong>IMPORTANT:</strong> During the development process is possible to change the type of release executing <strong>cells master:init</strong> on master anytime as you wish if is necessary.</p> <p>Check that new branch was generated ok:</p> <pre><code class="lang-bash">➜ pisco-git git:(master) git branch --all develop * master remotes/origin/develop remotes/origin/master </code></pre> <p>Checkout develop to start to work.</p> <pre><code>git checkout develop </code></pre><p><strong>Do not push code to develop. Create new feature </strong>Gluon<strong> branch with start feature command.</strong></p> <p>Versions of this branch are this type: <strong>x.y.z-beta.n</strong></p> </article> </section> <script type="text/javascript" src="../../js/highlight.pack.js"></script> <script> hljs.initHighlightingOnLoad(); $(function(){ $('.toggle_section').on('click', function(ev) { $(ev.currentTarget).parent('li').toggleClass('open'); }); }); </script> </body> </html>