File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ test -f "$GIT_DIR/MERGE_HEAD" && die_merge
40
40
41
41
strategy_args= diffstat= no_commit= squash= no_ff= ff_only=
42
42
log_arg= verbosity= progress= recurse_submodules=
43
- merge_args=
43
+ merge_args= edit=
44
44
curr_branch=$( git symbolic-ref -q HEAD)
45
45
curr_branch_short=" ${curr_branch# refs/ heads/ } "
46
46
rebase=$( git config --bool branch.$curr_branch_short .rebase)
70
70
no_commit=--no-commit ;;
71
71
--c|--co|--com|--comm|--commi|--commit)
72
72
no_commit=--commit ;;
73
+ -e|--edit)
74
+ edit=--edit ;;
75
+ --no-edit)
76
+ edit=--no-edit ;;
73
77
--sq|--squ|--squa|--squas|--squash)
74
78
squash=--squash ;;
75
79
--no-sq|--no-squ|--no-squa|--no-squas|--no-squash)
@@ -278,7 +282,7 @@ true)
278
282
eval=" $eval --onto $merge_head ${oldremoteref:- $merge_head } "
279
283
;;
280
284
* )
281
- eval=" git-merge $diffstat $no_commit $squash $no_ff $ff_only "
285
+ eval=" git-merge $diffstat $no_commit $edit $ squash $no_ff $ff_only "
282
286
eval=" $eval $log_arg $strategy_args $merge_args $verbosity $progress "
283
287
eval=" $eval \"\$ merge_name\" HEAD $merge_head "
284
288
;;
You can’t perform that action at this time.
0 commit comments