From e64f605f3e85808466fa7c5379c0fc5ea3736cf2 Mon Sep 17 00:00:00 2001 From: Felix Van der Jeugt Date: Fri, 4 Dec 2020 13:43:30 +0100 Subject: [PATCH] proper markdown, inline commands --- README.md | 13 +++++++++++-- benchmarks | 2 -- pullthemall | 3 --- 3 files changed, 11 insertions(+), 7 deletions(-) delete mode 100755 benchmarks delete mode 100755 pullthemall diff --git a/README.md b/README.md index f7862f9..afff12e 100644 --- a/README.md +++ b/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 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 + ``` + git submodule foreach ../benchmark + ``` diff --git a/benchmarks b/benchmarks deleted file mode 100755 index 0f07fbc..0000000 --- a/benchmarks +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -git submodule foreach ../benchmark "$@" diff --git a/pullthemall b/pullthemall deleted file mode 100755 index 8215e8b..0000000 --- a/pullthemall +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -git submodule foreach git fetch origin -git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1