11GIT v1.5.4 Release Notes
22========================
33
4+ Removal
5+ -------
6+
7+ * "git svnimport" was removed in favor of "git svn".
8+
9+
410Deprecation notices
511-------------------
612
@@ -30,152 +36,159 @@ Deprecation notices
3036 limitation of the latter. Use of post-update hook will be deprecated
3137 in future versions of git, perhaps in v1.5.5.
3238
39+ * "git lost-found" was deprecated in favor of "git fsck"'s --lost-found
40+ option, and will be removed in the future.
41+
42+ * "git peek-remote" is deprecated, as "git ls-remote" was written in C
43+ and works for all transports, and will be removed in the future.
44+
3345
3446Updates since v1.5.3
3547--------------------
3648
3749 * Comes with much improved gitk.
3850
39- * Comes with git- gui 0.9.0 with i18n.
51+ * Comes with " git gui" 0.9.0 with i18n.
4052
41- * git-lost-found was deprecated in favor of git-fsck's --lost-found
42- option .
53+ * progress display from many commands are a lot nicer to the eye.
54+ Transfer commands show throughput data .
4355
44- * git-peek-remote is deprecated, as git-ls-remote was written in C and
45- works for all transports .
56+ * many commands that pay attention to per-directory .gitignore now do
57+ so lazily, which makes the usual case go much faster .
4658
47- * git-cherry-pick made a misguided attempt to repeat the original
48- command line in the generated log message, when told to cherry-pick a
49- commit by naming a tag that points at it. It does not anymore.
59+ * Output processing for '--pretty=format:<user format>' has been
60+ optimized.
5061
51- * "progress display" from many commands are a lot nicer to the
52- eye. Transfer commands show throughput data .
62+ * Rename detection of diff family, while detecting exact matches, has
63+ been greatly optimized .
5364
54- * many commands that pay attention to per-directory .gitignore now do
55- so lazily, which makes the usual case go much faster.
65+ * Rename detection of diff family tries to make more naturally looking
66+ pairing. Earlier if more than one identical rename sources were
67+ found in the preimage, they were picked pretty much at random.
5668
57- * git- reset is now built-in and its output can be squelched with -q.
69+ * " git reset" is now built-in and its output can be squelched with -q.
5870
59- * git- send-email can optionally talk over ssmtp and use SMTP-AUTH.
71+ * " git send-email" can optionally talk over ssmtp and use SMTP-AUTH.
6072
61- * git- rebase learned --whitespace option.
73+ * " git rebase" learned --whitespace option.
6274
63- * In git- rebase, when you decide not to replay a particular change
64- after the command stopped with a conflict, you can say "git- rebase
75+ * In " git rebase" , when you decide not to replay a particular change
76+ after the command stopped with a conflict, you can say "git rebase
6577 --skip" without first running "git reset --hard", as the command now
6678 runs it for you.
6779
68- * git-remote knows --mirror mode .
80+ * " git merge" can call the "post-merge" hook .
6981
70- * git-merge can call the "post-merge" hook.
82+ * "git pack-objects" can optionally run deltification with multiple
83+ threads.
7184
72- * git-pack-objects can optionally run deltification with multiple threads.
73-
74- * git-archive can optionally substitute keywords in files marked with
85+ * "git archive" can optionally substitute keywords in files marked with
7586 export-subst attribute.
7687
77- * git-for-each-ref learned %(xxxdate:<dateformat>) syntax to
78- show the various date fields in different formats.
88+ * "git cherry-pick" made a misguided attempt to repeat the original
89+ command line in the generated log message, when told to cherry-pick a
90+ commit by naming a tag that points at it. It does not anymore.
7991
80- * git-gc --auto is a low-impact way to automatically run a
81- variant of git-repack that does not lose unreferenced objects
82- (read: safer than the usual one) after the user accumulates
83- too many loose objects.
92+ * "git for-each-ref" learned %(xxxdate:<dateformat>) syntax to show the
93+ various date fields in different formats.
8494
85- * You need to explicitly set clean.requireForce to "false" to allow
86- git-clean without -f to do any damage (lack of the configuration
87- variable used to mean "do not require", but we now use the safer
88- default) .
95+ * "git gc --auto" is a low-impact way to automatically run a variant of
96+ " git repack" that does not lose unreferenced objects (read: safer
97+ than the usual one) after the user accumulates too many loose
98+ objects .
8999
90- * git-clean has been rewritten in C.
100+ * You need to explicitly set clean.requireForce to "false" to allow
101+ "git clean" without -f to do any damage (lack of the configuration
102+ variable used to mean "do not require -f option to lose untracked
103+ files", but we now use the safer default).
91104
92- * git-push has been rewritten in C.
105+ * " git clean" has been rewritten in C.
93106
94- * git- push learned --dry-run option to show what would happen
95- if a push is run.
107+ * " git push" learned --dry-run option to show what would happen if a
108+ push is run.
96109
97- * git- push does not update a tracking ref on the pushing side when the
110+ * " git push" does not update a tracking ref on the local side when the
98111 remote refused to update the corresponding ref.
99112
100- * git- push learned --mirror option. This is to push the local refs
113+ * " git push" learned --mirror option. This is to push the local refs
101114 one-to-one to the remote, and deletes refs from the remote that do
102115 not exist anymore in the repository on the pushing side.
103116
104- * git-remote learned "rm" subcommand.
117+ * "git remote" knows --mirror mode. This is to set up configuration to
118+ push into a remote repository to store local branch heads to the same
119+ branch on the remote side, and remove branch heads locally removed
120+ from local repository at the same time. Suitable for pushing into a
121+ back-up repository.
122+
123+ * "git remote" learned "rm" subcommand.
105124
106- * git- rebase --interactive mode can now work on detached HEAD.
125+ * " git rebase --interactive" mode can now work on detached HEAD.
107126
108- * git- cvsserver can be run via git- shell.
127+ * " git cvsserver" can be run via " git shell" .
109128
110- * git-am and git- rebase are far less verbose.
129+ * " git am" and " git rebase" are far less verbose.
111130
112- * git-pull learned to pass --[no-]ff option to underlying git-merge.
131+ * "git pull" learned to pass --[no-]ff option to underlying "git
132+ merge".
113133
114134 * Various Perforce importer updates.
115135
116- * "git log" learned --early-output option to help interactive
117- GUI implementations.
136+ * "git log" learned --early-output option to help interactive GUI
137+ implementations.
118138
119- * git-svnimport was removed in favor of git-svn .
139+ * " git bisect" learned "skip" action to mark untestable commits .
120140
121- * git-bisect learned "skip" action to mark untestable commits.
141+ * "git format-patch" learned "format.numbered" configuration variable
142+ to automatically turn --numbered option on when more than one commits
143+ are formatted.
122144
123- * git-format-patch learned "format.numbered" configuration variable
124- to automatically turn --numbered option on when more than one
125- commits are formatted.
145+ * "git ls-files" learned "--exclude-standard" to use the canned set of
146+ exclude files.
126147
127- * git-ls-files learned "--exclude-standard" to use the canned
128- set of exclude files.
148+ * "git rebase" now detaches head during its operation, so after a
149+ successful "git rebase" operation, the reflog entry branch@{1} for
150+ the current branch points at the commit before the rebase was
151+ started.
129152
130- * git-rebase now detaches head during its operation, so after a
131- successful "git rebase" operation, the reflog entry branch@{1}
132- for the current branch points at the commit before the rebase
133- was started.
153+ * "git tag -a -f existing" begins the editor session using the existing
154+ annotation message.
134155
135- * "git-tag -a -f existing" begins the editor session using the
136- existing annotation message.
156+ * "git tag -m one -m bar" (multiple -m options) behaves similarly to
157+ "git commit"; the parameters to -m options are formatted as separate
158+ paragraphs.
137159
138- * "git cvsexportcommit" learned -w option to specify and switch
139- to the CVS working directory.
160+ * "git cvsexportcommit" learned -w option to specify and switch to the
161+ CVS working directory.
140162
141- * "git checkout" from a subdirectory learned to use "../path"
142- to allow checking out a path outside the current directory
143- without cd'ing up.
163+ * "git checkout" from a subdirectory learned to use "../path" to allow
164+ checking out a path outside the current directory without cd'ing up.
144165
145- * "git send-email --dry-run" shows full headers for easier
146- diagnosis.
166+ * "git send-email --dry-run" shows full headers for easier diagnosis.
147167
148- * "git merge-ours" is built-in.
168+ * "git merge-ours" is now built-in.
149169
150170 * "git svn" learned "info" and "show-externals" subcommands.
151171
152- * calling "git svn" from a subdirectory failed read settings from the
172+ * "git svn" run from a subdirectory failed to read settings from the
153173 .git/config.
154174
155175 * "git svn" learned --use-log-author option, which picks up more
156176 descriptive name from From: and Signed-off-by: lines in the commit
157177 message.
158178
159- * "git status" from a subdirectory now shows relative paths
160- which makes copy-and-pasting for git-checkout/git-add/git-rm
161- easier.
179+ * "git status" from a subdirectory now shows relative paths which makes
180+ copy-and-pasting for git-checkout/git-add/git-rm easier.
162181
163182 * "git checkout" from and to detached HEAD leaves a bit more
164183 information in the reflog.
165184
166- * Output processing for '--pretty=format:<user format>' has
167- been optimized.
168-
169- * Rename detection of diff family, while detecting exact matches, has
170- been greatly optimized.
171-
172- * Rename detection of diff family tries to make more naturally looking
173- pairing. Earlier if more than one identical rename sources were
174- found in the preimage, they were picked pretty much at random.
185+ * "git branch" learned --contains option, to show only branches that
186+ can reach a given commit.
175187
176188 * Example update and post-receive hooks have been improved.
177189
178- * A corrupt ref at the remote site can be removed via "git push".
190+ * "git push" can remove a corrupt ref at the remote site with the usual
191+ ":ref" refspec.
179192
180193 * In addition there are quite a few internal clean-ups. Notably
181194
@@ -193,15 +206,14 @@ Fixes since v1.5.3
193206All of the fixes in v1.5.3 maintenance series are included in
194207this release, unless otherwise noted.
195208
196- * git-svn talking with the SVN over http will correctly quote branch
197- and project names .
209+ These fixes are only in v1.5.4 and not backported to v1.5.3 maintenance
210+ series .
198211
199- * "git rev-list --objects A..B" choked when the lower boundary
200- of the range involved a subproject. This fix is also queued
201- for 'maint' (but not in there yet).
212+ * "git svn" talking with the SVN over http will correctly quote branch
213+ and project names.
202214
203215--
204216exec >/var/tmp/1
205- O=v1.5.3.7-948-gb52e985
217+ O=v1.5.3.7-966-g6bda21b
206218echo O=`git describe refs/heads/master`
207219git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
0 commit comments