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::
98
98
tar archive entries. The default is 0002, which turns off the
99
99
world write bit. The special value "user" indicates that the
100
100
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.
102
103
103
104
ATTRIBUTES
104
105
----------
Original file line number Diff line number Diff line change @@ -622,7 +622,6 @@ where:
622
622
contents of <old|new>,
623
623
<old|new>-hex:: are the 40-hexdigit SHA1 hashes,
624
624
<old|new>-mode:: are the octal representation of the file modes.
625
-
626
625
+
627
626
The file parameters can point at the user's working file
628
627
(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' '
20
20
git add file3 &&
21
21
test_tick &&
22
22
git commit -m 3rd &&
23
+ COMMIT_FILE=.git/objects/5e/e1c35e83ea47cd3cc4f8cbee0568915fbbbd29 &&
24
+ test -f $COMMIT_FILE &&
25
+ test-chmtime =+0 $COMMIT_FILE &&
23
26
git notes add -m "Note #3"
24
27
'
25
28
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ add_blob() {
14
14
BLOB=$( echo aleph_0 | git hash-object -w --stdin) &&
15
15
BLOB_FILE=.git/objects/$( echo $BLOB | sed " s/^../&\//" ) &&
16
16
test $(( 1 + $before )) = $( git count-objects | sed " s/ .*//" ) &&
17
- test -f $BLOB_FILE
17
+ test -f $BLOB_FILE &&
18
+ test-chmtime =+0 $BLOB_FILE
18
19
}
19
20
20
21
test_expect_success setup '
You can’t perform that action at this time.
0 commit comments