mirror of
https://github.com/ZeusWPI/Advent-of-Code-Aggregator.git
synced 2024-11-14 03:54:26 +01:00
add submodule for niko and POSIX
This commit is contained in:
parent
de40047606
commit
76db4e9c1f
3 changed files with 8 additions and 4 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -43,3 +43,6 @@
|
||||||
[submodule "JP"]
|
[submodule "JP"]
|
||||||
path = JP
|
path = JP
|
||||||
url = https://github.com/Jan-PieterBaert/advent-of-code
|
url = https://github.com/Jan-PieterBaert/advent-of-code
|
||||||
|
[submodule "Niko"]
|
||||||
|
path = Niko
|
||||||
|
url = https://github.com/niknetniko/AdventOfCode
|
||||||
|
|
1
Niko
Submodule
1
Niko
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit def4eb40e78d90b6b5f962ba78ee2da0b3d091b4
|
|
@ -21,20 +21,20 @@
|
||||||
|
|
||||||
* repo clonen:
|
* repo clonen:
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
git clone --recursive git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git
|
git clone --recursive git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git
|
||||||
```
|
```
|
||||||
|
|
||||||
* nieuwe toevoegen:
|
* nieuwe toevoegen:
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
git submodule add <link zoals in tabel> <naam zoals in tabel>
|
git submodule add <link zoals in tabel> <naam zoals in tabel>
|
||||||
git commit -m 'hey guys ik heb een repo toegevoegd'
|
git commit -m 'hey guys ik heb een repo toegevoegd'
|
||||||
```
|
```
|
||||||
|
|
||||||
* bestaande submodules updaten:
|
* bestaande submodules updaten:
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
git submodule foreach git fetch origin
|
git submodule foreach git fetch origin
|
||||||
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1
|
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1
|
||||||
git add * # oh no
|
git add * # oh no
|
||||||
|
@ -43,6 +43,6 @@
|
||||||
|
|
||||||
* benchmarks uitvoeren:
|
* benchmarks uitvoeren:
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
git submodule foreach ../benchmark <day> <part>
|
git submodule foreach ../benchmark <day> <part>
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue