From e3e648c16e898e8d697913e7c3ea37b6a4c0bd74 Mon Sep 17 00:00:00 2001 From: Operations Research Engineering Software+ Date: Fri, 22 Jun 2018 00:13:35 -0700 Subject: [PATCH] clone depth probably don't need depth more than 1, sometimes takes a pretty long time to clone o/w --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38771f0..cdf36a8 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ For a fully manual install, create a folder somewhere in your filesystem with th ```sh export NVM_DIR="$HOME/.nvm" && ( - git clone https://github.com/creationix/nvm.git "$NVM_DIR" + git clone --depth=1 https://github.com/creationix/nvm.git "$NVM_DIR" cd "$NVM_DIR" git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags --max-count=1)` ) && \. "$NVM_DIR/nvm.sh"