File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed
Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1+ GIT v1.5.0.4 Release Notes
2+ ==========================
3+
4+ Fixes since v1.5.0.3
5+ --------------------
6+
7+ * Bugfixes
8+
9+ - git.el does not add duplicate sign-off lines.
10+
11+ - git-commit shows the full stat of the resulting commit, not
12+ just about the files in the current directory, when run from
13+ a subdirectory.
14+
15+ - "git-checkout -m '@{8 hours ago}'" had a funny failure from
16+ eval; fixed.
17+
18+ - git-gui updates.
19+
20+ * Documentation updates
21+
22+ * User manual updates
23+
24+
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ OPTIONS
8686 Remove the line matching the key from config file.
8787
8888--unset-all::
89- Remove all matching lines from config file.
89+ Remove all lines matching the key from config file.
9090
9191-l, --list::
9292 List all variables set in config file.
Original file line number Diff line number Diff line change 205205 work=` git write-tree` &&
206206 git read-tree --reset -u $new || exit
207207
208- eval GITHEAD_$new =${new_name:- ${branch:- $new } } &&
208+ eval GITHEAD_$new =' ${new_name:-${branch:-$new}}' &&
209209 eval GITHEAD_$work =local &&
210210 export GITHEAD_$new GITHEAD_$work &&
211211 git merge-recursive $old -- $new $work
You can’t perform that action at this time.
0 commit comments