Skip to content

Commit d10e2cb

Browse files
committed
Third batch for 2.8 cycle
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 90ce285 commit d10e2cb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Documentation/RelNotes/2.8.0.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ UI, Workflows & Features
2929
cannot be set in the config file per project), this safety can be
3030
disabled.
3131

32+
* "git pull --rebase" has been extended to allow invoking
33+
"rebase -i".
34+
35+
* "git p4" learned to cope with the type of a file getting changed.
36+
37+
* "git format-patch" learned to notice format.outputDirectory
38+
configuration variable. This allows "-o <dir>" option to be
39+
omitted on the command line if you always use the same directory in
40+
your workflow.
41+
3242

3343
Performance, Internal Implementation, Development Support etc.
3444

@@ -49,6 +59,10 @@ Performance, Internal Implementation, Development Support etc.
4959
Try to address the same issue by always restoring the environment
5060
and respawning the real underlying command when handling alias.
5161

62+
* The low-level code that is used to create symbolic references has
63+
been updated to share more code with the code that deals with
64+
normal references.
65+
(merge 2859dcd jk/symbolic-ref later to maint).
5266

5367
Also contains various documentation updates and code clean-ups.
5468

@@ -114,6 +128,16 @@ notes for details).
114128
so this should have been caught if our test coverage were good.
115129
(merge a9eb90a ho/gitweb-squelch-undef-warning later to maint).
116130

131+
* "git rebase", unlike all other callers of "gc --auto", did not
132+
ignore the exit code from "gc --auto".
133+
(merge 8c24f5b jk/ok-to-fail-gc-auto-in-rebase later to maint).
134+
135+
* Many codepaths that run "gc --auto" before exiting kept packfiles
136+
mapped and left the file descriptors to them open, which was not
137+
friendly to systems that cannot remove files that are open. They
138+
now close the packs before doing so.
139+
(merge d562102 js/close-packs-before-gc later to maint).
140+
117141
* Other minor clean-ups and documentation updates
118142
(merge 99487cf ss/user-manual later to maint).
119143
(merge e914ef0 ew/for-each-ref-doc later to maint).

0 commit comments

Comments
 (0)