1 Git v1.8.3 Release Notes
2 ========================
4 Backward compatibility notes (for Git 2.0)
5 ------------------------------------------
7 When "git push [$there]" does not say what to push, we have used the
8 traditional "matching" semantics so far (all your branches were sent
9 to the remote as long as there already are branches of the same name
10 over there). In Git 2.0, the default will change to the "simple"
11 semantics that pushes the current branch to the branch with the same
12 name, only when the current branch is set to integrate with that
13 remote branch. There is a user preference configuration variable
14 "push.default" to change this. If you are an old-timer who is used
15 to the "matching" semantics, you can set it to "matching" to keep the
16 traditional behaviour. If you want to live in the future early,
17 you can set it to "simple" today without waiting for Git 2.0.
19 When "git add -u" and "git add -A", that does not specify what paths
20 to add on the command line is run from inside a subdirectory, these
21 commands will operate on the entire tree in Git 2.0 for consistency
22 with "git commit -a" and other commands. Because there will be no
23 mechanism to make "git add -u" behave as if "git add -u .", it is
24 important for those who are used to "git add -u" (without pathspec)
25 updating the index only for paths in the current subdirectory to start
26 training their fingers to explicitly say "git add -u ." when they mean
27 it before Git 2.0 comes.
33 UI, Workflows & Features
35 * When the interactive access to git-shell is not enabled, it issues
36 a message meant to help the system admininstrator to enable it.
37 An explicit way to help the end users who connect to the service by
38 issuing custom messages to refuse such an access has been added.
40 * "git status" suggests users to look into using--untracked=no option
41 when it takes too long.
43 * "git fetch" learned to fetch a commit at the tip of an unadvertised
44 ref by specifying a raw object name from the command line when the
45 server side supports this feature.
47 * "git count-objects -v" learned to report leftover temporary
48 packfiles and other garbage in the object store.
50 * A new read-only credential helper (in contrib/) to interact with
51 the .netrc/.authinfo files has been added.
53 * "git send-email" can be used with the credential helper system.
60 Performance, Internal Implementation, etc.
62 * Updates for building under msvc.
64 * A few codepaths knew how much data they need to put in the
65 hashtables they use upfront, but still started from a small table
66 repeatedly growing and rehashing.
69 Also contains minor documentation updates and code clean-ups.
75 Unless otherwise noted, all the fixes since v1.8.2 in the maintenance
76 track are contained in this release (see release notes to them for
79 * Clarify in the documentation "what" gets pushed to "where" when the
80 command line to "git push" does not say these explicitly.
81 (merge cfe1348 jc/maint-push-refspec-default-doc later to maint).
83 * The "--color=<when>" argument to the commands in the diff family
85 (merge 3d0e75f jc/color-diff-doc later to maint).
87 * The arguments given to pre-rebase hook were not documented.
88 (merge 0414acc wk/doc-pre-rebase later to maint).
90 * The v4 index format was not documented.
91 (merge 647d879 nd/doc-index-format later to maint).
93 * The "--match=<pattern>" argument "git describe" takes uses glob
94 pattern but it wasn't obvious from the documentation.
95 (merge 5229149 gp/describe-match-uses-glob-pattern later to maint).
97 * Some sources failed to compile on systems that lack NI_MAXHOST in
98 their system header (e.g. z/OS).
99 (merge 3b130ade dm/ni-maxhost-may-be-missing later to maint).
101 * Add an example use of "--env-filter" in "filter-branch"
103 (merge 21b6e4f tk/doc-filter-branch later to maint).
105 * "git bundle verify" did not say "records a complete history" for a
106 bundle that does not have any prerequisites.
107 (merge a02ffe0 lf/bundle-verify-list-prereqs later to maint).
109 * In the v1.8.0 era, we changed symbols that do not have to be global
110 to file scope static, but a few functions in graph.c were used by
111 CGit from sideways bypassing the entry points of the API the
113 (merge ac751a0 jk/graph-c-expose-symbols-for-cgit later to maint).
115 * "git update-index -h" did not do the usual "-h(elp)" thing.
117 * "git index-pack" had a buffer-overflow while preparing an
118 informational message when the translated version of it was too
120 (merge 5c3459f nd/index-pack-l10n-buf-overflow later to maint).
122 * 'git commit -m "$msg"' used to add an extra newline even when
123 $msg already ended with one.
124 (merge 46fbf75 bc/commit-complete-lines-given-via-m-option later to maint).
126 * The SSL peer verification done by "git imap-send" did not ask for
127 Server Name Indication (RFC 4366), failing to connect SSL/TLS
128 sites that serve multiple hostnames on a single IP.
129 (merge 698a1ec ob/imap-send-ssl-verify later to maint).
131 * perl/Git.pm::cat_blob slurped everything in core only to write it
132 out to a file descriptor, which was not a very smart thing to do.
133 (merge 712c6ad jc/perl-cat-blob later to maint).
135 * "git branch" did not bother to check nonsense command line
136 parameters and issue errors in many cases.
137 (merge 8efb889 nd/branch-error-cases later to maint).
139 * Verification of signed tags were not done correctly when not in C
141 (merge 0174eea mg/gpg-interface-using-status later to maint).
143 * Some platforms and users spell UTF-8 differently; retry with the
144 most official "UTF-8" when the system does not understand the
145 user-supplied encoding name that are the common alternative
147 (merge 5c680be jk/utf-8-can-be-spelled-differently later to maint).
149 * When export-subst is used, "zip" output recorded incorrect
151 (merge d3c1472 rs/zip-compresssed-size-with-export-subst later to maint).
153 * "git am $maildir/" applied messages in an unexpected order; sort
154 filenames read from the maildir/ in a way that is more likely to
155 sort messages in the order the writing MUA meant to, by sorting
156 numeric segment in numeric order and non-numeric segment in
158 (merge 18505c3 jk/mailsplit-maildir-muttsort later to maint).
160 * "git submodule update", when recursed into sub-submodules, did not
161 acccumulate the prefix paths.
162 (merge 75bf5e6 we/submodule-update-prefix-output later to maint).