Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There is <strong>the official read-only mirror of Dojo</strong> at GitHub: <a href="https://github.com/dojo" rel="nofollow noreferrer">https://github.com/dojo</a>. Add <em>dojo</em>, <em>dijit</em>, <em>dojox</em> and <em>util</em> as submodules to your project repository:</p> <pre><code># create project directory mkdir MyProject cd MyProject # init git repository git init # add git submodule mkdir src git submodule add https://github.com/dojo/dojo.git src/dojo # switch to the particular dojo version # use `git tag` inside the submodule directory to list available versions cd src/dojo git checkout 1.8.0 # repeat previous two steps for dijit, dojox, util (if necessary): # https://github.com/dojo/dijit.git # https://github.com/dojo/dojox.git # https://github.com/dojo/util.git # commit changes cd ../.. git add . git commit -m "added dojo submodule and moved it to the version 1.8.0" # push if applicable </code></pre> <p>These are two stackoverflow answers I got inspired by when I had the same question some time ago:</p> <ul> <li><a href="https://stackoverflow.com/questions/2140985/setup-a-git-external-for-remote-repo">Setup a git external for remote repo</a></li> <li><a href="https://stackoverflow.com/questions/1777854/git-submodules-specify-a-branch-tag">Git submodules: Specify a branch/tag</a></li> </ul> <p>Together with the aforementioned I employ <a href="http://nvie.com/posts/a-successful-git-branching-model/" rel="nofollow noreferrer">A successful Git branching model</a>, which is great, but a bit more tricky to setup. I can add a step by step instructions like those above, if you are interested.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload