From 701d6124b3f6614e1b741f84db90a5e7771eff14 Mon Sep 17 00:00:00 2001 From: Kjetil Klaussen Date: Thu, 21 Mar 2019 18:43:38 +0100 Subject: [PATCH 1/2] #852 Adding instructions to add submodules when cloning the repository --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index a72074f8f..079f2106f 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,14 @@ To clone ImageSharp locally click the "Clone in Windows" button above or run the git clone https://github.com/SixLabors/ImageSharp ``` +### Submodules + +This repository contains [git submodule](https://blog.github.com/2016-02-01-working-with-submodules/). To add the submodules to the project, navigate to the repository root and type: + +``` bash +git submodule update --init --recursive +``` + ### How can you help? Please... Spread the word, contribute algorithms, submit performance improvements, unit tests, no input is too little. Make sure to read our [Contribution Guide](https://github.com/SixLabors/ImageSharp/blob/master/.github/CONTRIBUTING.md) before opening a PR. From 5a550c4f25d597cf464203d8d2bf59af7a8f6fc1 Mon Sep 17 00:00:00 2001 From: Kjetil Klaussen Date: Thu, 21 Mar 2019 18:48:23 +0100 Subject: [PATCH 2/2] fix: Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 079f2106f..ceb28564b 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ git clone https://github.com/SixLabors/ImageSharp ### Submodules -This repository contains [git submodule](https://blog.github.com/2016-02-01-working-with-submodules/). To add the submodules to the project, navigate to the repository root and type: +This repository contains [git submodules](https://blog.github.com/2016-02-01-working-with-submodules/). To add the submodules to the project, navigate to the repository root and type: ``` bash git submodule update --init --recursive