mirror of
https://github.com/ZeusWPI/Advent-of-Code-Aggregator.git
synced 2024-11-22 14:51:11 +01:00
proper markdown, inline commands
This commit is contained in:
parent
cd85863cc7
commit
e64f605f3e
3 changed files with 11 additions and 7 deletions
13
README.md
13
README.md
|
@ -21,19 +21,28 @@
|
|||
|
||||
* repo clonen:
|
||||
|
||||
```
|
||||
git clone --recursive git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git
|
||||
```
|
||||
|
||||
* nieuwe toevoegen:
|
||||
|
||||
```
|
||||
git submodule add <link zoals in tabel> <naam zoals in tabel>
|
||||
git commit -m 'hey guys ik heb een repo toegevoegd'
|
||||
```
|
||||
|
||||
* bestaande submodules updaten:
|
||||
|
||||
./pullthemall
|
||||
```
|
||||
git submodule foreach git fetch origin
|
||||
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1
|
||||
git add * # oh no
|
||||
git commit -m 'update submodules'
|
||||
```
|
||||
|
||||
* benchmarks uitvoeren:
|
||||
|
||||
./benchmarks <dag> <deel>
|
||||
```
|
||||
git submodule foreach ../benchmark <day> <part>
|
||||
```
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/sh
|
||||
git submodule foreach ../benchmark "$@"
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
git submodule foreach git fetch origin
|
||||
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1
|
Loading…
Reference in a new issue