ISSM is a large-scale thermo-mechanical 2D/3D parallelized multi-purpose finite-element software dedicated to ice sheet and sea-level modeling.
- Forum: https://issm.ess.uci.edu/forum/
- GitHub: https://github.com/ISSMteam/ISSM
- Website: http://issm.jpl.nasa.gov/
Navigate to the parent directory where you want the ISSM repository to be located and run,
git clone https://github.com/ISSMteam/ISSM.git
or
git clone git@github.com:ISSMteam/ISSM.git
A good basic workflow for committing changes to the repository is,
- Stash your local changes
git stash
- Update your local branch
git pull
- Merge your local changes
git stash apply
- Add, commit, and push your changes
git add
git commit [-m <MSG>]
git push
You should then submit a pull request via GitHub so that project admins can review your changes and merge them into the main branch.