Skip to content

Commit 49f1cb9

Browse files
committed
Git 2.1.0-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3dcacd7 commit 49f1cb9

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

Documentation/RelNotes/2.1.0.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ UI, Workflows & Features
4949
enabled, allowing modern platforms to take advantage of the
5050
multiple cores they have.
5151

52+
* "git clone" applies the "if cloning from a local disk, physically
53+
copy repository using hardlinks, unless otherwise told not to with
54+
--no-local" optimization when url.*.insteadOf mechanism rewrites a
55+
"git clone $URL" that refers to a repository over the network to a
56+
clone from a local disk.
57+
5258
* "git commit --date=<date>" option learned to read from more
5359
timestamp formats, including "--date=now".
5460

@@ -96,6 +102,9 @@ UI, Workflows & Features
96102
* "git replace" learned the "--edit" subcommand to create a
97103
replacement by editing an existing object.
98104

105+
* "git replace" learned a "--graft" option to rewrite parents of a
106+
commit.
107+
99108
* "git send-email" learned "--to-cover" and "--cc-cover" options, to
100109
tell it to copy To: and Cc: headers found in the first input file
101110
when emitting later input files.
@@ -107,6 +116,10 @@ UI, Workflows & Features
107116
* "git tag" when editing the tag message shows the name of the tag
108117
being edited as a comment in the editor.
109118

119+
* "git tag" learned to pay attention to "tag.sort" configuration, to
120+
be used as the default sort order when no --sort=<value> the option
121+
is given.
122+
110123
* "git verify-commit" command to check GPG signature in signed
111124
commits, in a way similar to "git verify-tag" is used to check
112125
signed tags, was added.
@@ -226,6 +239,12 @@ notes for details).
226239
couple of options unique to "git merge".
227240
(merge 8fee872 jk/complete-merge-pull later to maint).
228241

242+
* The unix-domain socket used by the sample credential cache daemon
243+
tried to unlink an existing stale one at a wrong path, if the path
244+
to the socket was given as an overlong path that does not fit in
245+
sun_path member of the sockaddr_un structure.
246+
(merge 2869b3e rs/fix-unlink-unix-socket later to maint).
247+
229248
* An ancient rewrite passed a wrong pointer to a curl library
230249
function in a rarely used code path.
231250
(merge 479eaa8 ah/fix-http-push later to maint).
@@ -340,6 +359,9 @@ notes for details).
340359
emptying the insn sheet.
341360
(merge ddb5432 rr/rebase-autostash-fix later to maint).
342361

362+
* "git rebase --fork-point" did not filter out patch-identical
363+
commits correctly.
364+
343365
* During "git rebase --merge", a conflicted patch could not be
344366
skipped with "--skip" if the next one also conflicted.
345367
(merge 95104c7 bc/fix-rebase-merge-skip later to maint).

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v2.0.0.GIT
4+
DEF_VER=v2.1.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)