Skip to content

Commit afc6703

Browse files
committed
Update draft release notes for 1.5.4
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 364d3e6 commit afc6703

File tree

1 file changed

+58
-21
lines changed

1 file changed

+58
-21
lines changed

Documentation/RelNotes-1.5.4.txt

Lines changed: 58 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ GIT v1.5.4 Release Notes
44
Removal
55
-------
66

7-
* "git svnimport" was removed in favor of "git svn".
7+
* "git svnimport" was removed in favor of "git svn". It is still there
8+
in the source tree (contrib/examples) but unsupported.
89

910

1011
Deprecation notices
@@ -48,7 +49,10 @@ Updates since v1.5.3
4849

4950
* Comes with much improved gitk.
5051

51-
* Comes with "git gui" 0.9.0 with i18n.
52+
* Comes with "git gui" 0.9.1 with i18n.
53+
54+
* gitk is now merged as a subdirectory of git.git project, in
55+
preparation for its i18n.
5256

5357
* progress display from many commands are a lot nicer to the eye.
5458
Transfer commands show throughput data.
@@ -66,6 +70,21 @@ Updates since v1.5.3
6670
pairing. Earlier if more than one identical rename sources were
6771
found in the preimage, they were picked pretty much at random.
6872

73+
* Value "true" for color.diff and color.status configuration used to
74+
mean "always" (even when the output is not going to a terminal).
75+
This has been corrected to mean the same thing as "auto".
76+
77+
* HTTP proxy can be specified per remote repository using
78+
remote.*.httpproxy configuration, or global http.proxy configuration
79+
variable.
80+
81+
* Various Perforce importer updates.
82+
83+
* Example update and post-receive hooks have been improved.
84+
85+
* Any command that wants to take a commit object name can now use
86+
":/string" syntax to name a commit.
87+
6988
* "git reset" is now built-in and its output can be squelched with -q.
7089

7190
* "git send-email" can optionally talk over ssmtp and use SMTP-AUTH.
@@ -77,6 +96,15 @@ Updates since v1.5.3
7796
--skip" without first running "git reset --hard", as the command now
7897
runs it for you.
7998

99+
* "git rebase --interactive" mode can now work on detached HEAD.
100+
101+
* "git rebase" now detaches head during its operation, so after a
102+
successful "git rebase" operation, the reflog entry branch@{1} for
103+
the current branch points at the commit before the rebase was
104+
started.
105+
106+
* "git rebase -i" also triggers rerere to help your repeated merges.
107+
80108
* "git merge" can call the "post-merge" hook.
81109

82110
* "git pack-objects" can optionally run deltification with multiple
@@ -97,13 +125,13 @@ Updates since v1.5.3
97125
than the usual one) after the user accumulates too many loose
98126
objects.
99127

128+
* "git clean" has been rewritten in C.
129+
100130
* You need to explicitly set clean.requireForce to "false" to allow
101131
"git clean" without -f to do any damage (lack of the configuration
102132
variable used to mean "do not require -f option to lose untracked
103133
files", but we now use the safer default).
104134

105-
* "git clean" has been rewritten in C.
106-
107135
* "git push" learned --dry-run option to show what would happen if a
108136
push is run.
109137

@@ -114,6 +142,9 @@ Updates since v1.5.3
114142
one-to-one to the remote, and deletes refs from the remote that do
115143
not exist anymore in the repository on the pushing side.
116144

145+
* "git push" can remove a corrupt ref at the remote site with the usual
146+
":ref" refspec.
147+
117148
* "git remote" knows --mirror mode. This is to set up configuration to
118149
push into a remote repository to store local branch heads to the same
119150
branch on the remote side, and remove branch heads locally removed
@@ -122,16 +153,35 @@ Updates since v1.5.3
122153

123154
* "git remote" learned "rm" subcommand.
124155

125-
* "git rebase --interactive" mode can now work on detached HEAD.
126-
127156
* "git cvsserver" can be run via "git shell".
128157

129158
* "git am" and "git rebase" are far less verbose.
130159

131160
* "git pull" learned to pass --[no-]ff option to underlying "git
132161
merge".
133162

134-
* Various Perforce importer updates.
163+
* "git pull --rebase" is a different way to integrate what you fetched
164+
into your current branch.
165+
166+
* "git fast-export" produces datastream that can be fed to fast-import
167+
to reproduce the history recorded in a git repository.
168+
169+
* "git commit --allow-empty" allows you to create a single-parent
170+
commit that records the same tree as its parent, overriding the usual
171+
safety valve.
172+
173+
* "git commit --amend" can amend a merge that does not change the tree
174+
from its first parent.
175+
176+
* "git stash random-text" does not create a new stash anymore. It was
177+
a UI mistake. Use "git stash save random-text", or "git stash"
178+
(without extra args) for that.
179+
180+
* "git prune --expire <time>" can exempt young loose objects from
181+
getting pruned.
182+
183+
* "git branch --contains <commit>" can list branches that are
184+
descendants of a given commit.
135185

136186
* "git log" learned --early-output option to help interactive GUI
137187
implementations.
@@ -145,11 +195,6 @@ Updates since v1.5.3
145195
* "git ls-files" learned "--exclude-standard" to use the canned set of
146196
exclude files.
147197

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.
152-
153198
* "git tag -a -f existing" begins the editor session using the existing
154199
annotation message.
155200

@@ -182,14 +227,6 @@ Updates since v1.5.3
182227
* "git checkout" from and to detached HEAD leaves a bit more
183228
information in the reflog.
184229

185-
* "git branch" learned --contains option, to show only branches that
186-
can reach a given commit.
187-
188-
* Example update and post-receive hooks have been improved.
189-
190-
* "git push" can remove a corrupt ref at the remote site with the usual
191-
":ref" refspec.
192-
193230
* In addition there are quite a few internal clean-ups. Notably
194231

195232
- many fork/exec have been replaced with run-command API,
@@ -214,6 +251,6 @@ series.
214251

215252
--
216253
exec >/var/tmp/1
217-
O=v1.5.3.7-966-g6bda21b
254+
O=v1.5.3.7-1003-gf38ca7c
218255
echo O=`git describe refs/heads/master`
219256
git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint

0 commit comments

Comments
 (0)