File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ Fixes since v1.7.4.1
7
7
* Many documentation updates to match "git cmd -h" output and the
8
8
git-cmd manual page.
9
9
10
+ * We used to keep one file descriptor open for each and every packfile
11
+ that we have a mmap window on it (read: "in use"), even when for very
12
+ tiny packfiles. We now close the file descriptor early when the entire
13
+ packfile fits inside one mmap window.
14
+
10
15
* "git clone /no/such/path" did not fail correctly.
11
16
12
17
* "git commit" did not correctly error out when the user asked to use a
@@ -34,6 +39,10 @@ Fixes since v1.7.4.1
34
39
to update the upstream branch it forked from is now called "upstream".
35
40
The old name "tracking" is and will be supported.
36
41
42
+ * "git submodule update" used to honor the --merge/--rebase option (or
43
+ corresponding configuration variables) even for a newly cloned
44
+ subproject, which made no sense (so/submodule-no-update-first-time).
45
+
37
46
* gitweb's "highlight" interface mishandled tabs.
38
47
39
48
* gitweb had a few forward-incompatible syntactic constructs and
Original file line number Diff line number Diff line change @@ -102,6 +102,13 @@ appropriately before running "make".
102
102
not see any output, this option implies --verbose. For
103
103
convenience, it also implies --tee.
104
104
105
+ Note that valgrind is run with the option --leak-check=no,
106
+ as the git process is short-lived and some errors are not
107
+ interesting. In order to run a single command under the same
108
+ conditions manually, you should set GIT_VALGRIND to point to
109
+ the 't/valgrind/' directory and use the commands under
110
+ 't/valgrind/bin/'.
111
+
105
112
--tee::
106
113
In addition to printing the test output to the terminal,
107
114
write it to files named 't/test-results/$TEST_NAME.out'.
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ test_expect_success 'setup ' '
25
25
echo "bin: test 1 version 2" >one.bin &&
26
26
echo "bin: test number 2 version 2" >>two.bin &&
27
27
if test_have_prereq SYMLINKS; then
28
- ln -sf two.bin symlink.bin
28
+ rm symlink.bin &&
29
+ ln -s two.bin symlink.bin
29
30
fi &&
30
31
GIT_AUTHOR_NAME=Number2 git commit -a -m Second --date="2010-01-01 20:00:00"
31
32
'
You can’t perform that action at this time.
0 commit comments