https://github.com/GOMC-WSU/GOMC
Raw File
Tip revision: 9fc85fb574194e93752776c44c00c3e6513af281 authored by Jeffrey Potoff on 13 June 2023, 19:55:45 UTC
Update comment on C0 term in FFSetup.cpp
Tip revision: 9fc85fb
CONTRIBUTING.md
To contribute to GOMC please follow this procedure:

1)  Fork the GOMC repository

2)  Clone your forked repository

        git clone https://github.com/yourusername/GOMC.git

2)  Checkout the development branch:

        git checkout development

3)  Create a new branch based of the development branch named after your new feature

        git checkout -b nameofyourbranch

4)  Development on this branch checking for consistent results with the development branch by using the GOMC_Examples.py script

5)  When you are ready to add to GOMC, rebase your branch with the development branch.

        git remote add upstream https://github.com/GOMC-WSU/GOMC.git
        git rebase upstream/development

6)  Retest with the GOMC_Examples.py script

7)  If all the tests passed, open a pull request and select reviewers.
back to top