@@ -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
177178Also contains various documentation updates and code clean-ups.
0 commit comments