Fix another invocation of git from gitk with an overly long command-line
[git/dscho.git] / Documentation / RelNotes-1.7.3.txt
blob3512bbb238efd4284b3e06f7c18b0f4231569d75
1 Git v1.7.3 Release Notes (draft)
2 ================================
4 Updates since v1.7.2
5 --------------------
7  * git-gui got various updates and a new maintainer, Pat Thoyts.
9  * Gitweb allows its configuration to change per each request; it used to
10    read the configuration once upon startup.
12  * When git finds a corrupt object, it now reports the file that contains
13    it.
15  * "git checkout -B <it>" is a shorter way to say "git branch -f <it>"
16    followed by "git checkout <it>".
18  * When "git checkout" or "git merge" refuse to proceed in order to
19    protect local modification to your working tree, they used to stop
20    after showing just one path that might be lost.  They now show all,
21    in a format that is easier to read.
23  * "git clean" learned "-e" ("--exclude") option.
25  * Hunk headers produced for C# files by "git diff" and friends show more
26    relevant context than before.
28  * diff.ignoresubmodules configuration variable can be used to squelch the
29    differences in submodules reported when running commands (e.g. "diff",
30    "status", etc.) at the superproject level.
32  * http.useragent configuration can be used to lie who you are to your
33    restrictive firewall.
35  * "git rebase --strategy <s>" learned "-X" option to pass extra options
36    that are understood by the chosen merge strategy.
38  * "git rebase -i" learned "exec" that you can insert into the insn sheet
39    to run a command between its steps.
41  * "git rebase" between branches that have many binary changes that do
42    not conflict should be faster.
44  * "git rebase -i" peeks into rebase.autosquash configuration and acts as
45    if you gave --autosquash from the command line.
48 Also contains various documentation updates.
51 Fixes since v1.7.2
52 ------------------
54 All of the fixes in v1.7.2.X maintenance series are included in this
55 release, unless otherwise noted.
57  * "git merge -s recursive" (which is the default) did not handle cases
58    where a directory becomes a file (or vice versa) very well.
60  * "git fetch" and friends were accidentally broken for url with "+" in
61    its path, e.g. "git://git.gnome.org/gtk+".
63 ---
64 exec >/var/tmp/1
65 echo O=$(git describe master)
66 O=v1.7.2.2-268-g7e42332
67 O=v1.7.2
68 git shortlog --no-merges $O..master ^maint
69 exit 0
71 What did we want to do with...
73 1e3d411 (Enable custom schemes for column colors in the graph API, 2010-07-13)