You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ISSM is a large-scale thermo-mechanical 2D/3D parallelized multi-purpose finite-element software dedicated to ice sheet and sea-level modeling.
8
9
10
+
## Documentation
11
+
<ahref="https://issmteam.github.io/ISSM-Documentation"target="_blank">Just The Docs</a>
12
+
9
13
## Contact
10
-
-Forum: https://issm.ess.uci.edu/forum
11
-
-GitHub: https://github.com/ISSMteam/ISSM
12
-
- Website: https://issm.jpl.nasa.gov
14
+
-Bug Reporting: Please direct compile and run time bug reports strictly related to ISSM's core code or API's to the 'Issues' page.
15
+
-Questions: Please direct all other questions (e.g. model setup, configuration/compiling on a particular platform, compute cluster configuration) to the 'Discussions' page.
16
+
- Website: https://issm.jpl.nasa.gov (will be decommissioned soon)
13
17
14
18
## Checking Out a Copy of the Repository
15
19
Navigate to the parent directory where you want the ISSM repository to be located. If you plan to make contributions to the code base, we recommend that you check out a copy via SSH with,
@@ -28,31 +32,25 @@ Note that checkout via HTTPS does not require credentials, but does not allow co
28
32
## Committing Changes to the Repository
29
33
A good basic workflow for committing changes to the repository is,
30
34
31
-
1. Stash your local changes
32
-
```
35
+
```bash
36
+
#1. Stash your local changes
33
37
git stash
34
-
```
35
38
36
-
2. Update your local branch
37
-
```
39
+
#2. Update your local branch
38
40
git pull
39
-
```
40
41
41
-
3. Merge your local changes
42
-
```
42
+
#3. Merge your local changes
43
43
git stash apply
44
-
```
45
44
46
-
4. Add, commit, and push your changes
47
-
```
45
+
#4. Add, commit, and push your changes
48
46
git add [file]
49
47
git commit [-m "descriptive commit message"]
50
48
git push
51
49
```
52
50
53
-
5.If you have forked the ISSM repository, consider making sure that your commit passes CI workflows before submitting a pull request.
51
+
If you have forked the ISSM repository, consider making sure that your commit passes CI workflows before submitting a pull request.
54
52
55
-
6.Submit a pull request via GitHub so that project admins can review your changes and merge them into the main branch.
53
+
Submit a pull request via GitHub so that project admins can review your changes and merge them into the main branch.
56
54
57
55
If you find yourself making a lot of commits and pull requests, consider asking us to add you to the 'ISSM Contributors' group, which will allow you to make commits directly to the repository.
AC_INIT([Ice-sheet and Sea-level System Model (ISSM)],[4.24],[https://issm.ess.uci.edu/forum/],[issm],[http://issm.jpl.nasa.gov])
3
+
AC_INIT([Ice-sheet and Sea-level System Model (ISSM)],[4.24],[https://github.com/ISSMteam/ISSM/],[issm],[https://issmteam.github.io/ISSM-Documentation/])
4
4
AC_CONFIG_AUX_DIR([./aux-config])# Put config files in aux-config
5
5
AC_CONFIG_MACRO_DIR([m4])# m4 macros are located in m4
0 commit comments