Skip to content

Commit 652e759

Browse files
committed
Git 2.2.0-rc3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7ba2ba7 commit 652e759

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

Documentation/RelNotes/2.2.0.txt

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ UI, Workflows & Features
2828
* "git stash list -p" used to be almost always a no-op because each
2929
stash entry is represented as a merge commit. It learned to show
3030
the difference between the base commit version and the working tree
31-
version, which is in line with what "git show" gives.
31+
version, which is in line with what "git stash show" gives.
3232

3333
* Sometimes users want to report a bug they experience on their
3434
repository, but they are not at liberty to share the contents of
@@ -59,15 +59,15 @@ UI, Workflows & Features
5959
* The temporary files "git mergetool" uses are named to avoid too
6060
many dots in them (e.g. a temporary file for "hello.c" used to be
6161
named e.g. "hello.BASE.4321.c" but now uses underscore instead,
62-
e.g. "hello_BASE_4321.c").
62+
e.g. "hello_BASE_4321.c", to allow us to have multiple variants).
6363

64-
* The temporary files "git mergetools" uses can be placed in a newly
64+
* The temporary files "git mergetool" uses can be placed in a newly
6565
created temporary directory, instead of the current directory, by
6666
setting the mergetool.writeToTemp configuration variable.
6767

6868
* "git mergetool" understands "--tool bc" now, as version 4 of
6969
BeyondCompare can be driven the same way as its version 3 and it
70-
feels awkward to say "--tool bc3".
70+
feels awkward to say "--tool bc3" to run version 4.
7171

7272
* The "pre-receive" and "post-receive" hooks are no longer required
7373
to consume their input fully (not following this requirement used
@@ -86,17 +86,17 @@ UI, Workflows & Features
8686
without having to "trust" the server.
8787

8888
* "git interpret-trailers" is a new filter to programmatically edit
89-
the tail end of the commit log messages.
89+
the tail end of the commit log messages, e.g. "Signed-off-by:".
9090

9191
* "git help everyday" shows the "Everyday Git in 20 commands or so"
92-
document, whose contents have been updated to more modern Git
93-
practice.
92+
document, whose contents have been updated to match more modern
93+
Git practice.
9494

9595
* On the "git svn" front, work to reduce memory consumption and
9696
to improve handling of mergeinfo progresses.
9797

9898

99-
Performance, Internal Implementation, etc.
99+
Performance, Internal Implementation, Development Support etc.
100100

101101
* The API to manipulate the "refs" has been restructured to make it
102102
more transactional, with the eventual goal to allow all-or-none
@@ -118,8 +118,8 @@ Performance, Internal Implementation, etc.
118118

119119
* There are cases where you lock and open to write a file, close it
120120
to show the updated contents to external processes, and then have
121-
to update the file again while still holding the lock, but the
122-
lockfile API lacked support for such an access pattern.
121+
to update the file again while still holding the lock; now the
122+
lockfile API has support for such an access pattern.
123123

124124
* The API to allocate the structure to keep track of commit
125125
decoration has been updated to make it less cumbersome to use.
@@ -166,12 +166,13 @@ Performance, Internal Implementation, etc.
166166
a shell-trace of each command run in them.
167167

168168
* The "run-command" API learned to manage the argv and environment
169-
array for child process, alleviating the need for the callers to
169+
arrays for child process, alleviating the need for the callers to
170170
allocate and deallocate them.
171171

172172
* Some people use AsciiDoctor, instead of AsciiDoc, to format our
173-
documentation set; the documentation has been adjusted, as
174-
AsciiDoctor is pickier than AsciiDoc in its input mark-up.
173+
documentation set; the documentation has been adjusted to be usable
174+
by both, as AsciiDoctor is pickier than AsciiDoc in its input
175+
mark-up.
175176

176177

177178
Also contains various documentation updates and code clean-ups.

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v2.2.0-rc2
4+
DEF_VER=v2.2.0-rc3
55

66
LF='
77
'

0 commit comments

Comments
 (0)