@@ -4,11 +4,24 @@ Git v1.7.9 Release Notes (draft)
44Updates since v1.7.8
55--------------------
66
7+ * git-gui updated to 0.16.0.
8+
9+ * git-p4 (in contrib/) updates.
10+
711 * Porcelain commands like "git reset" did not distinguish deletions
812 and type-changes from ordinary modification, and reported them with
913 the same 'M' moniker. They now use 'D' (for deletion) and 'T' (for
1014 type-change) to match "git status -s" and "git diff --name-status".
1115
16+ * "git branch -m <current branch> HEAD" is an obvious no-op and is
17+ now allowed.
18+
19+ * "git checkout -B <current branch> <elsewhere>" is a more intuitive
20+ way to spell "git reset --keep <elsewhere>".
21+
22+ * "git checkout" and "git merge" learned "--no-overwrite-ignore" option
23+ to tell Git that untracked and ignored files are not expendable.
24+
1225 * fsck and prune are relatively lengthy operations that still go
1326 silent while making the end-user wait. They learned to give progress
1427 output like other slow operations.
@@ -41,21 +54,42 @@ Updates since v1.7.8
4154 which serves as a global fallback for setting 'branch.<name>.rebase'
4255 configuration variable per branch.
4356
57+ * "git tag" learned "--cleanup" option to control how the whitespaces
58+ and empty lines in tag message are cleaned up.
59+
60+ * "gitweb" learned to show side-by-side diff.
4461
4562Also contains minor documentation updates and code clean-ups.
4663
4764
4865Fixes since v1.7.8
4966------------------
5067
51- * In some codepaths (notably, checkout and merge), the ignore patterns
52- recorded in $GIT_DIR/info/exclude were not honored. They now are.
53- (merge fc001b5 nd/maint-ignore-exclude later to maint).
68+ * The function header pattern for files with "diff=cpp" attribute did
69+ not consider "type *funcname(type param1,..." as the beginning of a
70+ function.
71+ (merge 37e7793 tr/userdiff-c-returns-pointer later to maint).
72+
73+ * LF-to-CRLF streaming filter used when checking out a large-ish blob
74+ fell into an infinite loop with a rare input.
75+ (merge 284e3d2 cn/maint-lf-to-crlf-filter later to maint).
76+
77+ * "git archive" mistakenly allowed remote clients to ask for commits
78+ that are not at the tip of any ref.
79+ (merge 7b51c33 jk/maint-upload-archive later to maint).
80+
81+ * "git apply --check" did not error out when given an empty input
82+ without any patch.
83+ (merge cc64b31 bc/maint-apply-check-no-patch later to maint).
5484
85+ * The error message from "git diff" and "git status" when they fail
86+ to inspect changes in submodules did not report which submodule they
87+ had trouble with.
88+ (merge 6a5ceda jl/submodule-status-failure-report later to maint).
5589
5690--
5791exec >/var/tmp/1
58- O=v1.7.8-162-gd2c7807
92+ O=v1.7.8-246-gb3f17ac
5993echo O=$(git describe master)
6094git log --first-parent --oneline --reverse ^$O master
6195echo
0 commit comments