- General homepage: http://www.opengeosys.org
- Wiki: https://svn.ufz.de/ogs
- Build instructions: https://docs.opengeosys.org/docs/devguide5/getting-started/introduction
- Jenkins: https://svn.ufz.de:8443/job/OGS-5/
cd [source-directory]
mkdir build
cd build
cmake ..
Open the Visual Studio solution which was created in the build-directory or just type make
on Linux.
Following "A successful Git branching model", we suggest to have the following two main branches
- master - the main branch where the source code of HEAD always reflects the latest official codes (i.e. trunk in SVN repository)
- development - the main branch where the source code of HEAD always reflects a state with the latest delivered development changes for the next release.
To implement new features, every developer
- forks this repository to have their own (your repository is still private)
- makes a branch from master or development branch, and implement their stuff
- pushes the local branch to its GitHub repository
- makes a pull request from its GitHub repository to development branch in the
envinf/ogs5-trunk
repository
Once the development branch is ready to release a new version (this can also be done by one of the OGS core developers)
- merge the development branch into master
- push all new commits in master to the SVN repository using
git svn dcommit