mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
12 lines
331 B
Text
12 lines
331 B
Text
|
(
|
||
|
git rev-list --objects --no-object-names base..loose |
|
||
|
while read oid
|
||
|
do
|
||
|
# LINT: "|| echo" signals failure in loop upstream of a pipe
|
||
|
path="$objdir/$(test_oid_to_path "$oid")" &&
|
||
|
printf "%s %d\n" "$oid" "$(test-tool chmtime --get "$path")" ||
|
||
|
echo "object list generation failed for $oid"
|
||
|
done |
|
||
|
sort -k1
|
||
|
) >expect &&
|