]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Update draft release notes to 2.0
authorJunio C Hamano <gitster@pobox.com>
Fri, 28 Mar 2014 20:56:29 +0000 (13:56 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 28 Mar 2014 20:56:29 +0000 (13:56 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/RelNotes/2.0.0.txt

index 50bbc28e2169849f89b9ea4427b58221a35aff3b..98ec2103cd3c3d461bf641a3ff57c384d75d4fbb 100644 (file)
@@ -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.