File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ def parse_args(context):
187
187
'dag' ,
188
188
'fetch' ,
189
189
'grep' ,
190
+ 'merge' ,
190
191
'pull' ,
191
192
'push' ,
192
193
'remote' ,
@@ -324,6 +325,10 @@ def main(context):
324
325
elif context == 'grep' :
325
326
from cola .widgets import grep
326
327
view = grep .run_grep (parent = None )
328
+ elif context == 'merge' :
329
+ from cola .merge import view
330
+ model .update_status ()
331
+ view = view .MergeView (model , parent = None )
327
332
elif context == 'pull' :
328
333
from cola .widgets import remote
329
334
model .update_status ()
Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ fetch::
49
49
grep::
50
50
Use `git grep` to search for content.
51
51
52
+ merge::
53
+ Merge branches.
54
+
52
55
pull::
53
56
Fetch and merge remote branches.
54
57
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ Usability, bells and whistles
18
18
19
19
http://github.com/git-cola/git-cola/issues/140
20
20
21
+ * A new `git cola merge ` sub-command was added for merging branches.
22
+
21
23
* Less blocking in the main UI
22
24
23
25
Fixes
You can’t perform that action at this time.
0 commit comments