]> git.phdru.name Git - git-scripts.git/blob - set-commit-date-not-packed
Feat(submodules/remove): Add option `-c`
[git-scripts.git] / set-commit-date-not-packed
1 #! /bin/sh
2
3 # Call set-commit-date-recursive on all not-packed repositories
4
5 cd "`dirname \"$0\"`" && prog_dir="`pwd`" &&
6 for d in `"$prog_dir"/ls-not-packed`
7 do
8    cd "$d"; test -d .git || continue &&
9    echo "----- $d -----"; "$prog_dir"/set-commit-date-recursive || exit 1
10 done