Raw
1 2 (
2 3 git rev-list --objects --no-object-names base..loose |
3 4 while read oid
4 5 do
5 6 path="$objdir/$(test_oid_to_path "$oid")" &&
6 7 printf "%s %d\n" "$oid" "$(test-tool chmtime --get "$path")" ||
7 8 echo "object list generation failed for $oid"
8 9 done |
9 10 sort -k1
10 11 ) >expect &&