From 90332c02ea3fef78c5c31b52150859b0e3ff0edd Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Thu, 27 Oct 2022 01:42:54 -0700 Subject: [PATCH] dotfiles-install: remove --depth 1 bc my server doesn't support it --- .local/bin/dotfiles-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/dotfiles-install.sh b/.local/bin/dotfiles-install.sh index 0a97bbe..0ec62d7 100755 --- a/.local/bin/dotfiles-install.sh +++ b/.local/bin/dotfiles-install.sh @@ -17,7 +17,7 @@ if ! command -v git > /dev/null;then fi mkdir -p "$DOTFILES_REPO_DIR" -git clone --depth 1 --bare "$DOTFILES_REPO_URL" "$DOTFILES_REPO_DIR" +git clone --bare "$DOTFILES_REPO_URL" "$DOTFILES_REPO_DIR" dot() { git --git-dir="$DOTFILES_REPO_DIR" --work-tree="$HOME" "$@"