From 3724dce30b5f215dc610abf0ab872de600186d79 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 16 Oct 2025 14:11:02 +0200 Subject: [PATCH] meet.sh: Removes shallow clone option Removes the `--depth 1` option from the `git clone` command. This ensures that the entire repository history is cloned by default. --- meet.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meet.sh b/meet.sh index 50e9eb4..6b18ea8 100755 --- a/meet.sh +++ b/meet.sh @@ -501,7 +501,7 @@ clone_meet_pro() { echo -e "${GREEN}Attempting to clone '$REPO_URL' into ./$TARGET_DIR...${NC}" # Use shallow clone to be quicker by default - if git clone --depth 1 "$REPO_URL" "$TARGET_DIR"; then + if git clone "$REPO_URL" "$TARGET_DIR"; then echo echo -e "${GREEN}✓ Repository cloned into ./$TARGET_DIR${NC}" return 0