X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-commit-date-not-packed;fp=set-commit-date-not-packed;h=1073bc8e19d969765011e31d61d5d05988723858;hb=8acd6f41a8545f7f42bbd9a5b0b731b2bdc3c644;hp=0000000000000000000000000000000000000000;hpb=5513a663e5a0665fb5ba30c1ce7056468376e679;p=git-scripts.git diff --git a/set-commit-date-not-packed b/set-commit-date-not-packed new file mode 100755 index 0000000..1073bc8 --- /dev/null +++ b/set-commit-date-not-packed @@ -0,0 +1,10 @@ +#! /bin/sh + +# Call set-commit-date-recursive on all not-packed repositories + +cd "`dirname \"$0\"`" && prog_dir="`pwd`" && +for d in `"$prog_dir"/ls-not-packed` +do + cd "$d"; test -d .git || continue && + echo "$d"; "$prog_dir"/set-commit-date-recursive || exit 1 +done