summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-03-13 16:38:39 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-03-13 16:38:39 +0100
commitef519f6169f03aa6186d092b959454df1e2a3e50 (patch)
treec41e13de6f1287b99c2738a6dd1b597ef1620b69 /.github
parent96332a1f80c4e68be758a091c0c6591d91ae27af (diff)
parent05b409f60132a73e47f6f58ba80a6343b5bdb1a6 (diff)
Merge branch 'master' into iterator_over_simplex_tree
Diffstat (limited to '.github')
-rw-r--r--.github/how_to_use_github_to_contribute_to_gudhi.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/how_to_use_github_to_contribute_to_gudhi.md b/.github/how_to_use_github_to_contribute_to_gudhi.md
index 6ab05e36..747ca39b 100644
--- a/.github/how_to_use_github_to_contribute_to_gudhi.md
+++ b/.github/how_to_use_github_to_contribute_to_gudhi.md
@@ -25,10 +25,10 @@ This creates a directory gudhi-devel, which you are free to move around or renam
cd gudhi-devel
```
-Everytime you clone the repository, you will have to download the *submodules*.
+When you clone the repository, you also need to download the *submodules*.
## Submodules
-An interface to Hera for Wasserstein distance is available on an external git repository. To download it:
+Hera, used for Wasserstein distance, is available on an external git repository. To download it:
```bash
git submodule update --init
```
@@ -60,8 +60,9 @@ This is a command you can run quite regularly.
It tells git to check all that happened on github.
It is safe, it will not mess with your files.
-**Reminder:** Everytime you checkout master or merge from master, afterwards, if the version of one the submodule has changed, or if a submodule was added, you will have to:
+**Reminder:** If the version of a submodule has changed, or if a submodule was added, you may need to:
```bash
+git submodule sync
git submodule update --init
```