Skip to content

Commit

Permalink
Update external repo text to reflect new dir layout
Browse files Browse the repository at this point in the history
  • Loading branch information
snomos committed Feb 27, 2024
1 parent eed04a3 commit 0a32187
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions infra/GutUsageExamples.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,14 +265,17 @@ We use `git subtree` for adding external repos. To do that, add a new language a
1. add the external source using `git subtree` as follows:

```sh
git subtree add --prefix src/fst/ext-Apertium-nno https://github.com/apertium/apertium-nno.git master --squash
git subtree add --prefix src/fst/morphology/ext-Apertium-nno \
https://github.com/apertium/apertium-nno.git master --squash
```
1. Modify `src/fst/Makefile.am` as needed to make everything build

3. Modify `src/fst/morphology/Makefile.am` as needed to make everything build

When you later want to update the code from the external repository, do as follows:

```sh
git subtree pull --prefix src/fst/ext-Apertium-nno https://github.com/apertium/apertium-nno.git master --squash
git subtree pull --prefix src/fst/morphology/ext-Apertium-nno \
https://github.com/apertium/apertium-nno.git master --squash
```

## Task 16: Set team access permission
Expand Down

0 comments on commit 0a32187

Please sign in to comment.