summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes/2.0.0.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-28 20:56:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-28 20:56:29 (GMT)
commit96e67c86f817b4fbd492b12f57dae4bd821571ba (patch)
tree5d8835726fac91a7f318337c7ba30cf6fb7dacbc /Documentation/RelNotes/2.0.0.txt
parent40adf520a306220ebaedee72528efd1d0c4840ce (diff)
downloadgit-96e67c86f817b4fbd492b12f57dae4bd821571ba.zip
git-96e67c86f817b4fbd492b12f57dae4bd821571ba.tar.gz
git-96e67c86f817b4fbd492b12f57dae4bd821571ba.tar.bz2
Update draft release notes to 2.0
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes/2.0.0.txt')
-rw-r--r--Documentation/RelNotes/2.0.0.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.0.0.txt b/Documentation/RelNotes/2.0.0.txt
index 50bbc28..98ec210 100644
--- a/Documentation/RelNotes/2.0.0.txt
+++ b/Documentation/RelNotes/2.0.0.txt
@@ -47,6 +47,9 @@ Updates since v1.9 series
UI, Workflows & Features
+ * "git rebase" learned to interpret a lone "-" as "@{-1}", the
+ branch that we were previously on.
+
* "git commit --cleanup=<mode>" learned a new mode, scissors.
* "git tag --list" output can be sorted using "version sort" with
@@ -155,6 +158,30 @@ Unless otherwise noted, all the fixes since v1.9 in the maintenance
track are contained in this release (see the maintenance releases'
notes for details).
+ * "git repack" died when asked to (re)pack with the reachability
+ bitmap when a bitmap cannot be built; instead, just (re)pack
+ without producing a bitmap in such a case, with a warning.
+ (merge 373c67d jk/pack-bitmap later to maint).
+
+
+ * The progress output while repacking and transferring objects showed
+ an apparent large silence while writing the objects out of existing
+ packfiles, when the reachability bitmap was in use.
+ (merge 78d2214 jk/pack-bitmap-progress later to maint).
+
+
+ * A stray environment variable $prefix could have leaked into and
+ affected the behaviour of the "subtree" script (in contrib/).
+
+
+ * When it is not necessary to edit a commit log message (e.g. "git
+ commit -m" is given a message without specifying "-e"), we used to
+ disable the spawning of the editor by overriding GIT_EDITOR, but
+ this means all the uses of the editor, other than to edit the
+ commit log message, are also affected.
+ (merge b549be0 bp/commit-p-editor later to maint).
+
+
* "git mv" that moves a submodule forgot to adjust the array that
uses to keep track of which submodules were to be moved to update
its configuration.