summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes/2.9.1.txt
blob: 369383b33dc45e266413c836f6204c3fe632c2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Git v2.9.1 Release Notes
========================
 
Fixes since v2.9
----------------
 
 * When "git daemon" is run without --[init-]timeout specified, a
   connection from a client that silently goes offline can hang around
   for a long time, wasting resources.  The socket-level KEEPALIVE has
   been enabled to allow the OS to notice such failed connections.
 
 * The commands in `git log` family take %C(auto) in a custom format
   string.  This unconditionally turned the color on, ignoring
   --no-color or with --color=auto when the output is not connected to
   a tty; this was corrected to make the format truly behave as
   "auto".
 
 * "git rev-list --count" whose walk-length is limited with "-n"
   option did not work well with the counting optimized to look at the
   bitmap index.
 
 * "git show -W" (extend hunks to cover the entire function, delimited
   by lines that match the "funcname" pattern) used to show the entire
   file when a change added an entire function at the end of the file,
   which has been fixed.
 
 * The documentation set has been updated so that literal commands,
   configuration variables and environment variables are consistently
   typeset in fixed-width font and bold in manpages.
 
 * "git svn propset" subcommand that was added in 2.3 days is
   documented now.
 
 * The documentation tries to consistently spell "GPG"; when
   referring to the specific program name, "gpg" is used.
 
 * "git reflog" stopped upon seeing an entry that denotes a branch
   creation event (aka "unborn"), which made it appear as if the
   reflog was truncated.
 
 * The git-prompt scriptlet (in contrib/) was not friendly with those
   who uses "set -u", which has been fixed.
 
 * A codepath that used alloca(3) to place an unbounded amount of data
   on the stack has been updated to avoid doing so.
 
 * "git update-index --add --chmod=+x file" may be usable as an escape
   hatch, but not a friendly thing to force for people who do need to
   use it regularly.  "git add --chmod=+x file" can be used instead.
 
 * Build improvements for gnome-keyring (in contrib/)
 
 * "git status" used to say "working directory" when it meant "working
   tree".
 
 * Comments about misbehaving FreeBSD shells have been clarified with
   the version number (9.x and before are broken, newer ones are OK).
 
 * "git cherry-pick A" worked on an unborn branch, but "git
   cherry-pick A..B" didn't.
 
Also contains minor documentation updates and code clean-ups.