@@ -10,28 +10,49 @@ Updates since v1.7.4
10
10
11
11
* Various vcs-svn enhancements.
12
12
13
+ * Update to more modern HP-UX port.
14
+
15
+ * "git apply -v" reports offset lines when the patch does not apply at
16
+ the exact location recorded in the diff output.
17
+
18
+ * "git branch --track" (and "git checkout --track --branch") used to
19
+ allow setting up a random non-branch that does not make sense to follow
20
+ as the "upstream". The command correctly diagnoses it as an error.
21
+
13
22
* "git config" used to be also known as "git repo-config", but the old
14
23
name is now officially deprecated.
15
24
16
25
* "git checkout --detach <commit>" is a more user friendly synonym for
17
26
"git checkout <commit>^0".
18
27
28
+ * "git checkout" performed on detached HEAD gives a warning and an
29
+ advice when the commit being left behind will become unreachable from
30
+ any branch or tag.
31
+
19
32
* "git cherry-pick" and "git revert" can be told to use custom merge
20
33
strategy, similar to "git rebase".
21
34
22
35
* "git cherry-pick" remembers which commit failed to apply when it is
23
36
stopped by conflicts, making it unnecessary to use "commit -c $commit"
24
37
to conclude it.
25
38
39
+ * "git cvsimport" bails out immediately when the cvs server cannot be
40
+ reached, without spewing unnecessary error messages that complain about
41
+ the server response it never got.
42
+
26
43
* "git grep --no-index" did not honor pathspecs correctly, returning
27
44
paths outside the specified area.
28
45
46
+ * "git log" family of commands now understand globbing pathspecs. You
47
+ can say "git log -- '*.txt'" for example.
48
+
29
49
* "git rev-list --objects $revs -- $pathspec" would limit the objects listed
30
50
in its output properly with the pathspec, in preparation for narrow
31
51
clones.
32
52
33
- * "git log" family of commands now understand globbing pathspecs. You
34
- can say "git log -- '*.txt'" for example.
53
+ * "git push" with no parameters gives better advice messages when
54
+ "tracking" is used as the push.default semantics or there is no remote
55
+ configured yet.
35
56
36
57
* "git rerere" learned a new subcommand "remaining", that is similar to
37
58
"status" that lists the paths that had conflicts that are known to
@@ -52,6 +73,15 @@ Fixes since v1.7.4
52
73
All of the fixes in the v1.7.4.X maintenance series are included in this
53
74
release, unless otherwise noted.
54
75
76
+ * We used to keep one file descriptor open for each and every packfile
77
+ that we have a mmap window on it (read: "in use"), even when for very
78
+ tiny packfiles. We now close the file descriptor early when the entire
79
+ packfile fits inside one mmap window.
80
+
81
+ * "git apply" used to confuse lines updated by previous hunks as lines
82
+ that existed before when applying a hunk, contributing misapplication
83
+ of patches with offsets.
84
+
55
85
* "git clone /no/such/path" did not fail correctly (jk/fail-null/clone).
56
86
57
87
* "git checkout $other_branch" silently removed untracked symbolic links
@@ -75,6 +105,6 @@ release, unless otherwise noted.
75
105
76
106
---
77
107
exec >/var/tmp/1
78
- O=v1.7.4.1-224-g66ecd2d
108
+ O=v1.7.4.1-265-gd0ef5a7
79
109
echo O=$(git describe 'master')
80
110
git shortlog --no-merges ^maint ^$O master
0 commit comments