@@ -6,7 +6,8 @@ Updates since v1.7.5
6
6
7
7
* Various git-svn updates.
8
8
9
- * Updates the way content tags are handled in gitweb.
9
+ * Updates the way content tags are handled in gitweb. Also adds
10
+ a UI to choose common timezone for displaying the dates.
10
11
11
12
* Similar to branch names, tagnames that begin with "-" are now
12
13
disallowed.
@@ -16,6 +17,15 @@ Updates since v1.7.5
16
17
17
18
* The scripting part of the codebase is getting prepared for i18n/l10n.
18
19
20
+ * Pushing and pulling from a repository with large number of refs that
21
+ point to identical commits are optimized by not listing the same commit
22
+ during the common ancestor negotiation exchange with the other side.
23
+
24
+ * Adding a file larger than core.bigfilethreshold (defaults to 1/2 Gig)
25
+ using "git add" will send the contents straight to a packfile without
26
+ having to hold it and its compressed representation both at the same
27
+ time in memory.
28
+
19
29
* Processes spawned by "[alias] <name> = !process" in the configuration
20
30
can inspect GIT_PREFIX environment variable to learn where in the
21
31
working tree the original command was invoked.
@@ -66,6 +76,9 @@ Updates since v1.7.5
66
76
"--show-notes" option. Unlike "--show-notes", "--notes=<ref>" does
67
77
not imply showing the default notes.
68
78
79
+ * They also learned a log.abbrevCommit configuration variable to augment
80
+ the --abbrev-commit command line option.
81
+
69
82
* "git ls-remote" learned "--exit-code" option to consider it a
70
83
different kind of error when no remote ref to be shown.
71
84
@@ -93,10 +106,6 @@ Updates since v1.7.5
93
106
still in a conflicted state during a merge, to avoid using information
94
107
that is not final and possibly corrupt with conflict markers.
95
108
96
- * Compressed tarball gitweb generates is made without the timestamp of
97
- the tarball generation; snapshot from the same tree should result in
98
- a same tarball.
99
-
100
109
Also contains various documentation updates and minor miscellaneous
101
110
changes.
102
111
@@ -107,45 +116,16 @@ Fixes since v1.7.5
107
116
Unless otherwise noted, all the fixes in 1.7.5.X maintenance track are
108
117
included in this release.
109
118
110
- * Setting $(prefix) in config.mak did not affect where etc/gitconfig
111
- file is read from, even though passing it from the command line of
112
- $(MAKE) did.
113
- (merge kk/maint-prefix-in-config-mak later)
114
-
115
- * The bash completion scripts should correctly work using zsh's bash
116
- completion emulation layer now.
117
- (merge fc/completion-zsh later)
118
-
119
- * The logic to handle "&" (expand to UNIX username) in GECOS field
120
- miscounted the length of the name it formatted.
121
- (merge rg/copy-gecos-username later)
122
-
123
119
* The single-key mode of "git add -p" was easily fooled into thinking
124
120
that it was told to add everthing ('a') when up-arrow was pressed by
125
121
mistake.
126
122
(merge tr/add-i-no-escape later)
127
123
128
- * "git cherry-pick -s resolve" failed to cherry-pick a root commit.
129
- (merge jk/cherry-pick-root-with-resolve later)
130
-
131
124
* "git config" used to choke with an insanely long line.
132
125
(merge ef/maint-strbuf-init later)
133
126
134
- * "git diff --word-diff" misbehaved when diff.suppress-blank-empty was
135
- in effect.
136
- (merge jm/maint-diff-words-with-sbe later)
137
-
138
- * "git log --stdin path" with an input that has additional pathspec
139
- used to corrupt memory.
140
- (merge jc/maint-pathspec-stdin-and-cmdline later)
141
-
142
- * "git send-pack" (hence "git push") over smalt-HTTP protocol could
143
- deadlock when the client side pack-object died early.
144
- (merge js/maint-send-pack-stateless-rpc-deadlock-fix later)
145
- (merge jk/git-connection-deadlock-fix later)
146
-
147
127
---
148
128
exec >/var/tmp/1
149
129
echo O=$(git describe master)
150
- O=v1.7.5.2-352-g4961210
130
+ O=v1.7.5.3-365-g7eacc2b
151
131
git shortlog --no-merges ^maint ^$O master
0 commit comments