@@ -10,8 +10,10 @@ Updates since v1.7.8
10
10
11
11
* git-p4 (in contrib/) updates.
12
12
13
- * i18n effort is going forward and Git uses localized messages if
14
- available.
13
+ * Git uses gettext to translate its most common interface messages
14
+ into the user's language if translations are available and the
15
+ locale is appropriately set. Distributors can drop in new PO files
16
+ in po/ to add new translations.
15
17
16
18
* Porcelain commands like "git reset" did not distinguish deletions
17
19
and type-changes from ordinary modification, and reported them with
@@ -23,9 +25,9 @@ Updates since v1.7.8
23
25
external programs to cache or store them, to allow integration with
24
26
platform native keychain mechanisms.
25
27
26
- * "git commit" and "git reset" re-learned the optimization to prime
27
- the cache-tree information in the index, which makes it faster to
28
- write a tree object out after the index entries are updated .
28
+ * The prompted input in the terminal use our own getpass() replacement
29
+ when possible. HTTP transactions used to ask username without echoing
30
+ back what was typed, but with this change you will see it as you type .
29
31
30
32
* "git add" learned to stream large files directly into a packfile
31
33
instead of writing them into individual loose object files.
@@ -43,13 +45,27 @@ Updates since v1.7.8
43
45
user is amending the tree being recorded, without updating the
44
46
commit log message.
45
47
48
+ * "git commit" and "git reset" re-learned the optimization to prime
49
+ the cache-tree information in the index, which makes it faster to
50
+ write a tree object out after the index entries are updated.
51
+
52
+ * "git commit" detects and rejects an attempt to stuff NUL byte in
53
+ the commit log message.
54
+
46
55
* fsck and prune are relatively lengthy operations that still go
47
56
silent while making the end-user wait. They learned to give progress
48
57
output like other slow operations.
49
58
50
59
* The set of built-in function-header patterns for various languages
51
60
knows MATLAB.
52
61
62
+ * "git log --follow" honors the rename threshold score given with the
63
+ -M option (e.g. "-M50%").
64
+
65
+ * "git log --format='<format>'" learned new %g[nNeE] specifiers to
66
+ show information from the reflog entries when warlking the reflog
67
+ (i.e. with "-g").
68
+
53
69
* "git pull" can be used to fetch and merge an annotated/signed tag,
54
70
instead of the tip of a topic branch. The GPG signature from the
55
71
signed tag is recorded in the resulting merge commit for later
@@ -86,45 +102,34 @@ Also contains minor documentation updates and code clean-ups.
86
102
Fixes since v1.7.8
87
103
------------------
88
104
89
- * The function header pattern for files with "diff=cpp" attribute did
90
- not consider "type *funcname(type param1,..." as the beginning of a
91
- function.
92
- (merge 37e7793 tr/userdiff-c-returns-pointer later to maint).
93
-
94
105
* The replacement implemention for snprintf used on platforms with
95
106
native snprintf that is broken did not use va_copy correctly.
96
107
(merge a9bfbc5 jk/maint-snprintf-va-copy later to maint).
97
108
98
- * LF-to-CRLF streaming filter used when checking out a large-ish blob
99
- fell into an infinite loop with a rare input.
100
- (merge 284e3d2 cn/maint-lf-to-crlf-filter later to maint).
101
-
102
109
* git native connection going over TCP (not over SSH) did not set
103
110
SO_KEEPALIVE option which failed to receive link layer errors.
104
111
(merge e47a858 ew/keepalive later to maint).
105
112
106
- * "git archive" mistakenly allowed remote clients to ask for commits
107
- that are not at the tip of any ref.
108
- (merge 7b51c33 jk/maint-upload-archive later to maint).
109
-
110
- * "git apply --check" did not error out when given an empty input
111
- without any patch.
112
- (merge cc64b31 bc/maint-apply-check-no-patch later to maint).
113
+ * LF-to-CRLF streaming filter replaced all LF with CRLF, which might
114
+ be techinically correct but not friendly to people who are trying
115
+ to recover from earlier mistakes of using CRLF in the repository
116
+ data in the first place. It now refrains from doing so for LF that
117
+ follows a CR.
118
+ (merge 8496f56 jc/maint-lf-to-crlf-keep-crlf later to maint).
113
119
114
120
* "git checkout -m" did not recreate the conflicted state in a "both
115
121
sides added, without any common ancestor version" conflict
116
122
situation.
117
- (merge 335c6e4 jc/checkout-m-twoway later to maint).
123
+ (merge 5cd7fadc jc/checkout-m-twoway later to maint).
118
124
119
125
* "git cherry-pick $commit" (not a range) created an unnecessary
120
126
sequencer state and interfered with valid workflow to use the
121
127
command during a session to cherry-pick multiple commits.
122
128
(merge d596118 jn/maint-sequencer-fixes later to maint).
123
129
124
- * The error message from "git diff" and "git status" when they fail
125
- to inspect changes in submodules did not report which submodule they
126
- had trouble with.
127
- (merge 6a5ceda jl/submodule-status-failure-report later to maint).
130
+ * You could make "git commit" segfault by giving the "--no-message"
131
+ option.
132
+ (merge 03f94ae jk/maint-strbuf-missing-init later to maint).
128
133
129
134
* "fast-import" did not correctly update an existing notes tree,
130
135
possibly corrupting the fan-out.
@@ -151,9 +156,16 @@ Fixes since v1.7.8
151
156
given.
152
157
(merge a4ddbc3 jk/maint-push-over-dav later to maint).
153
158
159
+ * "git push" to an empty repository over HTTP were broken with a
160
+ recent change to the ref handling.
161
+ (merge 02f7914 jk/http-push-to-empty later to maint).
162
+
163
+ * "git push -v" forgot how to be verbose by mistake. It now properly is.
164
+ (merge bd2c86e jk/maint-push-v-is-verbose later to maint).
165
+
154
166
--
155
167
exec >/var/tmp/1
156
- O=v1.7.8-351-g2dccad3
168
+ O=v1.7.8.1-361-g1aea303
157
169
echo O=$(git describe master)
158
170
git log --first-parent --oneline --reverse ^$O master
159
171
echo
0 commit comments