Skip to content
Snippets Groups Projects
Commit baad29c2 authored by Marco Biasini's avatar Marco Biasini
Browse files

added blurps about "picking the right branch" and "updating the source code"...

added blurps about "picking the right branch" and "updating the source code" to installation instructions
parent 8d77653c
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,16 @@ The above command will clone OpenStructre into the directory called `directory-n
git config --global http.sslVerify false
Picking the right branch
--------------------------------------------------------------------------------
By default you are checking out the master branch. Master is, by definition a stable branch. It always points to the latest release. However, there are several other branches at your disposal. The main development is happening in the develop branch. It contains the newest features and bug fixes. However, we dont't make any guarantees that the develop branch is bug free and doesn't contain major bugs. After all, it's in constant flux. If you are developing new features, start your feature branch off develop. Besides that, there are several smaller features branches that are used to group together commits for one specific features. To change to a specific branch, use
.. code-block:: bash
git checkout <branch-name>
Configuring
--------------------------------------------------------------------------------
......@@ -172,7 +182,6 @@ run multiple jobs at once.
On Windows run 'Build OpenStructure' from the build menu.
What's next?
--------------------------------------------------------------------------------
......@@ -189,3 +198,14 @@ or, to start the command-line interpreter:
stage/bin/ost
If you repeatedly use OpenStructure, it is recommended to add /path/to/dng/stage/bin to your path.
Getting the newest changes
--------------------------------------------------------------------------------
To get the newest changes from the central git repository, enter
.. code-block:: bash
git pull
in your terminal. This will fetch the newest changes.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment