11GIT v1.6.5 Release Notes
22========================
33
4- In git 1.7.0, which is planned to be the release after 1.6.5, "git push"
5- into a branch that is currently checked out will be refused by default.
4+ In git 1.7.0, which was planned to be the release after 1.6.5, "git
5+ push" into a branch that is currently checked out will be refused by
6+ default.
67
78You can choose what should happen upon such a push by setting the
89configuration variable receive.denyCurrentBranch in the receiving
@@ -44,8 +45,14 @@ Updates since v1.6.4
4445 outperforms the default fallback implementation we borrowed from
4546 Mozzilla.
4647
48+ * Unnecessary inefficiency in deepening of a shallow repository has
49+ been removed.
50+
4751(usability, bells and whistles)
4852
53+ * Human writable date format to various options, e.g. --since=yesterday,
54+ master@{2000.09.17}, are taught to infer some omitted input properly.
55+
4956 * refs/replace/ hierarchy is designed to be usable as a replacement
5057 of the "grafts" mechanism, with the added advantage that it can be
5158 transferred across repositories.
@@ -54,10 +61,23 @@ Updates since v1.6.4
5461
5562 * "git am" handles input e-mail files that has CRLF line endings sensibly.
5663
64+ * "git am" learned "--scissors" option to allow you to discard early part
65+ of an incoming e-mail.
66+
67+ * "git checkout", "git reset" and "git stash" learned to pick and
68+ choose to use selected changes you made, similar to "git add -p".
69+
70+ * "git clone" learned a "-b" option to pick a HEAD to check out
71+ different from the remote's default branch.
72+
5773 * "git commit --dry-run $args" is a new recommended way to ask "what would
5874 happen if I try to commit with these arguments."
5975
60- * "git cvsimport" now supports password-protected pserver access.
76+ * "git commit --dry-run" and "git status" shows conflicted paths in a
77+ separate section to make them easier to spot during a merge.
78+
79+ * "git cvsimport" now supports password-protected pserver access even
80+ when the password is not taken from ~/.cvspass file.
6181
6282 * "git fast-export" learned --no-data option that can be useful when
6383 reordering commits and trees without touching the contents of
@@ -76,8 +96,6 @@ Updates since v1.6.4
7696 * informational output from "git reset" that lists the locally modified
7797 paths is made consistent with that of "git checkout $another_branch".
7898
79- * "git status" gives more descriptive output for unmerged paths.
80-
8199 * "git submodule" learned to give submodule name to scripts run with
82100 "foreach" subcommand.
83101
@@ -87,6 +105,9 @@ Updates since v1.6.4
87105 tree vs the commit bound at submodule path, instead of comparing
88106 the index.
89107
108+ * "git upload-pack", which is the server side support for "git clone" and
109+ "git fetch", can call a new post-upload-pack hook for statistics purposes.
110+
90111(developers)
91112
92113 * With GIT_TEST_OPTS="--root=/p/a/t/h", tests can be run outside the
@@ -104,6 +125,6 @@ Fixes since v1.6.4
104125
105126--
106127exec >/var/tmp/1
107- O=v1.6.4.1-266-g235db15
128+ O=v1.6.4.2-298-gdf01e7c
108129echo O=$(git describe master)
109130git shortlog --no-merges $O..master --not maint
0 commit comments