Add colours to commands

This commit is contained in:
Niko Strijbol 2020-12-04 13:45:19 +01:00 committed by GitHub
parent e64f605f3e
commit de40047606
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,20 +21,20 @@
* repo clonen: * repo clonen:
``` ```bash
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
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
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
git submodule foreach ../benchmark <day> <part> git submodule foreach ../benchmark <day> <part>
``` ```