Skip to content

Commit 3f09db0

Browse files
committed
Update draft release notes to 2.0
1 parent fe3623c commit 3f09db0

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

Documentation/RelNotes/2.0.0.txt

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,23 @@ The "-q" option to "git diff-files", which does *NOT* mean "quiet",
3939
has been removed (it told Git to ignore deletion, which you can do
4040
with "git diff-files --diff-filter=d").
4141

42+
"git request-pull" lost a few "heuristics" that often led to mistakes.
43+
4244

4345
Updates since v1.9 series
4446
-------------------------
4547

46-
Foreign interfaces, subsystems and ports.
48+
UI, Workflows & Features
4749

50+
* "git tag --list" output can be sorted using "version sort" with
51+
"--sort=version:refname".
4852

49-
UI, Workflows & Features
53+
* Discard the accumulated "heuristics" to guess from which branch the
54+
result wants to be pulled from and make sure what the end user
55+
specified is not second-guessed by "git request-pull", to avoid
56+
mistakes. When you pushed out your 'master' branch to your public
57+
repository as 'for-linus', use the new "master:for-linus" syntax to
58+
denote the branch to be pulled.
5059

5160
* "git grep" learned to behave in a way similar to native grep when
5261
"-h" (no header) and "-c" (count) options are given.
@@ -144,6 +153,21 @@ Unless otherwise noted, all the fixes since v1.9 in the maintenance
144153
track are contained in this release (see the maintenance releases'
145154
notes for details).
146155

156+
* Serving objects from a shallow repository needs to write a
157+
new file to hold the temporary shallow boundaries but it was not
158+
cleaned when we exit due to die() or a signal.
159+
(merge 7839632 jk/shallow-update-fix later to maint).
160+
161+
* When "git stash pop" stops after failing to apply the stash
162+
(e.g. due to conflicting changes), the stash is not dropped. State
163+
that explicitly in the output to let the users know.
164+
(merge 2d4c993 jc/stash-pop-not-popped later to maint).
165+
166+
* The labels in "git status" output that describe the nature of
167+
conflicts (e.g. "both deleted") were limited to 20 bytes, which was
168+
too short for some l10n (e.g. fr).
169+
(merge c7cb333 jn/wt-status later to maint).
170+
147171
* "git clean -d pathspec" did not use the given pathspec correctly
148172
and ended up cleaning too much.
149173
(merge 1f2e108 jk/clean-d-pathspec later to maint).

0 commit comments

Comments
 (0)