This GitHub repository contains documentation for computing within the Department of Climate, Meteorology & Atmospheric Sciences at the University of Illinois Urbana-Champaign.
The latest version of documentation may be viewed at https://computing-docs.readthedocs.io/en/latest/
For contribution/testing purposes, the documentation may be compiled locally by changing into
the docs
directory by:
cd docs
And the HTML code can then be produced by:
make html
with the result being viewable by accessing build/html/index.html
.
- Fork this repository by clicking the Fork button on the atmsillinois/uiuc-atmos-computing GitHub page or clicking here
- Clone the forked repository locally:
git clone https://github.com/<GitHub username>/<whatever you named your fork repo>.git
- Checkout a new branch locally that you intend to work on (as an example, called
new_documentation
):git checkout -b new_documentation
- Consider submitting an Issue listing your anticipated contribution or comment on an existing Issue.
- Make desired changes to this local branch to address your target issue.
- Push this new branch to your Fork:
git push origin new_documentation
- Create a Pull Request with
atmsillinois/uiuc-atmos-computing
main
by selecting "compare across forks" and suggesting that your new branch be incorporated. This may be initially done as a "Draft" if your work is not yet finalized.