@@ -4,11 +4,24 @@ Git v1.7.9 Release Notes (draft)
4
4
Updates since v1.7.8
5
5
--------------------
6
6
7
+ * git-gui updated to 0.16.0.
8
+
9
+ * git-p4 (in contrib/) updates.
10
+
7
11
* Porcelain commands like "git reset" did not distinguish deletions
8
12
and type-changes from ordinary modification, and reported them with
9
13
the same 'M' moniker. They now use 'D' (for deletion) and 'T' (for
10
14
type-change) to match "git status -s" and "git diff --name-status".
11
15
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
+
12
25
* fsck and prune are relatively lengthy operations that still go
13
26
silent while making the end-user wait. They learned to give progress
14
27
output like other slow operations.
@@ -41,21 +54,42 @@ Updates since v1.7.8
41
54
which serves as a global fallback for setting 'branch.<name>.rebase'
42
55
configuration variable per branch.
43
56
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.
44
61
45
62
Also contains minor documentation updates and code clean-ups.
46
63
47
64
48
65
Fixes since v1.7.8
49
66
------------------
50
67
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).
54
84
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).
55
89
56
90
--
57
91
exec >/var/tmp/1
58
- O=v1.7.8-162-gd2c7807
92
+ O=v1.7.8-246-gb3f17ac
59
93
echo O=$(git describe master)
60
94
git log --first-parent --oneline --reverse ^$O master
61
95
echo
0 commit comments