Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 820 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (14 loc) · 820 Bytes

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
    
  3. Checkout the development branch:

    git checkout development
    
  4. Create a new branch based of the development branch named after your new feature

    git checkout -b nameofyourbranch
    
  5. Development on this branch checking for consistent results with the development branch by using the GOMC_Examples.py script

  6. 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
    
  7. Retest with the GOMC_Examples.py script

  8. If all the tests passed, open a pull request and select reviewers.