# HG changeset patch # User Meredith Howard # Date 1641758657 18000 # Node ID e1132c1cce12d55910508e3ee199338700f08828 # Parent f1e5d30543ba825395943364bf8fe86ed65e3faa use clone --single-branch diff --git a/bin/homedir-setup b/bin/homedir-setup --- a/bin/homedir-setup +++ b/bin/homedir-setup @@ -13,10 +13,10 @@ fi clone_or_pull() { if ! [ -d $2 ]; then - git clone --depth 1 "$1" $2 + git clone --single-branch --depth 1 "$1" $2 else echo "$2:" - git -C "$2" pull --no-tags + git -C "$2" pull fi }