2018-08-15 14:28:13 +02:00
|
|
|
This repository uses subtrees to manage some of its externals.
|
|
|
|
|
|
|
|
## Initial setup
|
|
|
|
|
|
|
|
```
|
2020-05-21 22:31:18 +02:00
|
|
|
git remote add externals-fmt https://github.com/fmtlib/fmt.git --no-tags
|
2022-04-19 13:12:19 +02:00
|
|
|
git remote add externals-mcl https://github.com/merryhime/mcl.git --no-tags
|
2020-05-21 22:31:18 +02:00
|
|
|
git remote add externals-robin-map https://github.com/Tessil/robin-map.git --no-tags
|
2021-03-01 21:23:52 +01:00
|
|
|
git remote add externals-vixl https://git.linaro.org/arm/vixl.git --no-tags
|
2020-05-21 22:31:18 +02:00
|
|
|
git remote add externals-xbyak https://github.com/herumi/xbyak.git --no-tags
|
2021-05-25 22:32:34 +02:00
|
|
|
git remote add externals-zycore https://github.com/zyantific/zycore-c.git --no-tags
|
|
|
|
git remote add externals-zydis https://github.com/zyantific/zydis.git --no-tags
|
2018-08-15 14:28:13 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Updating
|
|
|
|
|
|
|
|
Change `<ref>` to refer to the appropriate git reference.
|
|
|
|
|
|
|
|
```
|
|
|
|
git fetch externals-fmt
|
2022-04-19 13:12:19 +02:00
|
|
|
git fetch externals-mcl
|
2020-05-21 22:31:18 +02:00
|
|
|
git fetch externals-robin-map
|
2021-03-01 21:23:52 +01:00
|
|
|
git fetch externals-vixl
|
2018-08-15 14:28:13 +02:00
|
|
|
git fetch externals-xbyak
|
2021-05-25 22:32:34 +02:00
|
|
|
git fetch externals-zycore
|
|
|
|
git fetch externals-zydis
|
2018-08-15 14:28:13 +02:00
|
|
|
git subtree pull --squash --prefix=externals/fmt externals-fmt <ref>
|
2022-04-19 13:12:19 +02:00
|
|
|
git subtree pull --squash --prefix=externals/mcl externals-mcl <ref>
|
2020-05-21 22:31:18 +02:00
|
|
|
git subtree pull --squash --prefix=externals/robin-map externals-robin-map <ref>
|
2021-03-01 21:23:52 +01:00
|
|
|
git subtree pull --squash --prefix=externals/vixl/vixl externals-vixl <ref>
|
2018-08-15 14:28:13 +02:00
|
|
|
git subtree pull --squash --prefix=externals/xbyak externals-xbyak <ref>
|
2021-05-25 22:32:34 +02:00
|
|
|
git subtree pull --squash --prefix=externals/zycore externals-zycore <ref>
|
|
|
|
git subtree pull --squash --prefix=externals/zydis externals-zydis <ref>
|
2018-08-15 14:28:13 +02:00
|
|
|
```
|