From 03a65dd38b0bcd30e0e747421b279a997dfd9e8e Mon Sep 17 00:00:00 2001 From: Gautam krishna R Date: Sat, 7 Dec 2019 17:46:31 +0530 Subject: [PATCH] Use git shallow clone to improve cloning performance --- AIDungeon_2.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AIDungeon_2.ipynb b/AIDungeon_2.ipynb index 79430b2..231d2bc 100644 --- a/AIDungeon_2.ipynb +++ b/AIDungeon_2.ipynb @@ -45,7 +45,7 @@ "colab": {} }, "source": [ - "!git clone https://github.com/nickwalton/AIDungeon/\n", + "!git clone --depth 1 https://github.com/nickwalton/AIDungeon/\n", "%cd AIDungeon\n", "!./install.sh\n", "from IPython.display import clear_output \n", @@ -71,4 +71,4 @@ "outputs": [] } ] -} \ No newline at end of file +}