From 188390f6e9918a2967fdb82746fb293f0821629b Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Fri, 10 Nov 2023 19:18:49 +0100 Subject: [PATCH] [docs] Don't recommend depth=1 for non-deployment-only docker clones Due to the Git LFS migration this barely saves any disk space and it prevents users from switching branches --- docs/docker-compose-install.md | 2 +- docs/install.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker-compose-install.md b/docs/docker-compose-install.md index 7d532cf08..3e6be3a30 100644 --- a/docs/docker-compose-install.md +++ b/docs/docker-compose-install.md @@ -13,7 +13,7 @@ GIT_LFS_SKIP_SMUDGE=1 git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git -- If you want to build your own images (make sure to install `git-lfs` before running the command): ```sh -git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git --depth=1 +git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git ``` ### docker-compose.yml diff --git a/docs/install.md b/docs/install.md index 77bb9b04f..a7d4d2e34 100644 --- a/docs/install.md +++ b/docs/install.md @@ -35,7 +35,7 @@ This document will guide you through manual installation of Iceshrimp. We also p Make sure you have `git-lfs` installed before cloning the repo, as we are using Git LFS for efficient storage of binary blobs. ```sh -git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git --depth=1 +git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git ``` If you don't want to run the latest development version, pick a version from [here](https://iceshrimp.dev/iceshrimp/iceshrimp/releases) and run `git checkout ` before continuing.