@@ -13,12 +13,21 @@ UI, Workflows & Features
13
13
14
14
* "git grep -m<max-hits>" is a way to limit the hits shown per file.
15
15
16
+ * "git merge-tree" learned a new mode where it takes two commits and
17
+ computes a tree that would result in the merge commit, if the
18
+ histories leading to these two commits were to be merged.
19
+
20
+ * "git mv A B" in a sparsely populated working tree can be asked to
21
+ move a path between directories that are "in cone" (i.e. expected
22
+ to be materialized in the working tree) and "out of cone"
23
+ (i.e. expected to be hidden). The handling of such cases has been
24
+ improved.
25
+
16
26
17
27
Performance, Internal Implementation, Development Support etc.
18
28
19
29
* Collection of what is referenced by objects in promisor packs have
20
30
been optimized to inspect these objects in the in-pack order.
21
- (merge 18c08abc82 jk/optim-promisor-object-enumeration later to maint).
22
31
23
32
* Introduce a helper to see if a branch is already being worked on
24
33
(hence should not be newly checked out in a working tree), which
@@ -28,7 +37,13 @@ Performance, Internal Implementation, Development Support etc.
28
37
* Teach "git archive" to (optionally and then by default) avoid
29
38
spawning an external "gzip" process when creating ".tar.gz" (and
30
39
".tgz") archives.
31
- (merge 4f4be00d30 rs/archive-with-internal-gzip later to maint).
40
+
41
+ * Allow large objects read from a packstream to be streamed into a
42
+ loose object file straight, without having to keep it in-core as a
43
+ whole.
44
+
45
+ * Further preparation to turn git-submodule.sh into a builtin
46
+ continues.
32
47
33
48
34
49
Fixes since v2.37
@@ -63,6 +78,11 @@ Fixes since v2.37
63
78
documentation mark-up have been corrected.
64
79
(merge 54e51e559e ds/git-rebase-doc-markup later to maint).
65
80
81
+ * In a non-bare repository, the behavior of Git when the
82
+ core.worktree configuration variable points at a directory that has
83
+ a repository as its subdirectory, regressed in Git 2.27 days.
84
+ (merge d6c9a71755 gg/worktree-from-the-above later to maint).
85
+
66
86
* Other code cleanup, docfix, build fix, etc.
67
87
(merge 5fd9d1738e jk/revisions-doc-markup-fix later to maint).
68
88
(merge 1971510c35 pb/diff-doc-raw-format later to maint).
0 commit comments