File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,8 @@ tar.umask::
9898 tar archive entries. The default is 0002, which turns off the
9999 world write bit. The special value "user" indicates that the
100100 archiving user's umask will be used instead. See umask(2) for
101- details.
101+ details. If `--remote` is used then only the configuration of
102+ the remote repository takes effect.
102103
103104ATTRIBUTES
104105----------
Original file line number Diff line number Diff line change @@ -622,7 +622,6 @@ where:
622622 contents of <old|new>,
623623 <old|new>-hex:: are the 40-hexdigit SHA1 hashes,
624624 <old|new>-mode:: are the octal representation of the file modes.
625-
626625+
627626The file parameters can point at the user's working file
628627(e.g. `new-file` in "git-diff-files"), `/dev/null` (e.g. `old-file`
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ test_expect_success 'setup: create a few commits with notes' '
2020 git add file3 &&
2121 test_tick &&
2222 git commit -m 3rd &&
23+ COMMIT_FILE=.git/objects/5e/e1c35e83ea47cd3cc4f8cbee0568915fbbbd29 &&
24+ test -f $COMMIT_FILE &&
25+ test-chmtime =+0 $COMMIT_FILE &&
2326 git notes add -m "Note #3"
2427'
2528
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ add_blob() {
1414 BLOB=$( echo aleph_0 | git hash-object -w --stdin) &&
1515 BLOB_FILE=.git/objects/$( echo $BLOB | sed " s/^../&\//" ) &&
1616 test $(( 1 + $before )) = $( git count-objects | sed " s/ .*//" ) &&
17- test -f $BLOB_FILE
17+ test -f $BLOB_FILE &&
18+ test-chmtime =+0 $BLOB_FILE
1819}
1920
2021test_expect_success setup '
You can’t perform that action at this time.
0 commit comments