repo.or.cz
/
git-cola.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
usability: Allow staging all files when committing
[git-cola.git]
/
cola
/
difftool.py
blob
1dfccf007d50cc42c1faf1d95a406956c4fb8b95
1
from
cola
import
utils
2
3
def
launch
(
args
):
4
"""Launches 'git difftool' with args"""
5
difftool_args
= [
'git'
,
'difftool'
,
'--no-prompt'
]
6
difftool_args
.
extend
(
args
)
7
utils
.
fork
(
difftool_args
)