@@ -25,11 +25,11 @@ Updates since v1.7.4
25
25
* "git checkout --detach <commit>" is a more user friendly synonym for
26
26
"git checkout <commit>^0".
27
27
28
- * "git checkout" performed on detached HEAD gives a warning and an
28
+ * "git checkout" performed on detached HEAD gives a warning and
29
29
advice when the commit being left behind will become unreachable from
30
30
any branch or tag.
31
31
32
- * "git cherry-pick" and "git revert" can be told to use custom merge
32
+ * "git cherry-pick" and "git revert" can be told to use a custom merge
33
33
strategy, similar to "git rebase".
34
34
35
35
* "git cherry-pick" remembers which commit failed to apply when it is
@@ -43,19 +43,19 @@ Updates since v1.7.4
43
43
* "git grep --no-index" did not honor pathspecs correctly, returning
44
44
paths outside the specified area.
45
45
46
- * "git log" family of commands now understand globbing pathspecs. You
46
+ * "git log" type commands now understand globbing pathspecs. You
47
47
can say "git log -- '*.txt'" for example.
48
48
49
- * "git rev-list --objects $revs -- $pathspec" would limit the objects listed
49
+ * "git rev-list --objects $revs -- $pathspec" now limits the objects listed
50
50
in its output properly with the pathspec, in preparation for narrow
51
51
clones.
52
52
53
53
* "git push" with no parameters gives better advice messages when
54
54
"tracking" is used as the push.default semantics or there is no remote
55
55
configured yet.
56
56
57
- * "git rerere" learned a new subcommand "remaining", that is similar to
58
- "status" that lists the paths that had conflicts that are known to
57
+ * "git rerere" learned a new subcommand "remaining" that is similar to
58
+ "status" and lists the paths that had conflicts which are known to
59
59
rerere, but excludes the paths that have already been marked as
60
60
resolved in the index from its output. "git mergetool" has been
61
61
updated to use this facility.
@@ -82,29 +82,16 @@ release, unless otherwise noted.
82
82
that existed before when applying a hunk, contributing misapplication
83
83
of patches with offsets.
84
84
85
- * "git clone /no/such/path" did not fail correctly (jk/fail-null/clone).
86
-
87
85
* "git checkout $other_branch" silently removed untracked symbolic links
88
86
in the working tree that are in the way in order to check out paths
89
87
under it from the named branch (js/checkout-untracked-symlink).
90
88
91
- * "git diff --stat -B" ran on binary files counted the changes in lines,
92
- which was nonsensical (jk/diffstat-binary).
93
-
94
- * "git diff -M" opportunisticly detected copies, which was not
95
- necessarily a good thing, especially when it is internally run by
96
- recursive merge.
97
-
98
- * "git merge" triggers prepare-commit-msg hook. Earlier, only "git
99
- commit" to conclude an interrupted merge triggered the hook, leading to
100
- an inconsistent overall user experience (js/maint-merge-use-prepare-commit-msg-hook).
101
-
102
- * "git submodule update" used to honor --merge/--rebase option (or
89
+ * "git submodule update" used to honor the --merge/--rebase option (or
103
90
corresponding configuration variables) even for a newly cloned
104
- subprojects , which made no sense (so/submodule-no-update-first-time).
91
+ subproject , which made no sense (so/submodule-no-update-first-time).
105
92
106
93
---
107
94
exec >/var/tmp/1
108
- O=v1.7.4.1-265-gd0ef5a7
95
+ O=v1.7.4.1-291-g01de349
109
96
echo O=$(git describe 'master')
110
97
git shortlog --no-merges ^maint ^$O master
0 commit comments