proper markdown, inline commands

This commit is contained in:
Felix Van der Jeugt 2020-12-04 13:43:30 +01:00
parent cd85863cc7
commit e64f605f3e
No known key found for this signature in database
GPG key ID: 58B209295023754D
3 changed files with 11 additions and 7 deletions

View file

@ -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>
```

View file

@ -1,2 +0,0 @@
#!/bin/sh
git submodule foreach ../benchmark "$@"

View file

@ -1,3 +0,0 @@
#!/bin/sh
git submodule foreach git fetch origin
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1