diff - how to end git difftool session (beyond compare )? -
i'm using command git difftool --tool=bc3
, git opens first file beyond compare , wait me close it, opens next file , go on , on again.
how can force git close session?
thanks.
you need kill git process stop launching diffs.
there several methods can use this.
- click x close shell window running git.
- hit control+c kill git process in shell running git.
launch new shell, use ps find git's process id, use kill command terminate process.
user@machine:~$ ps x | grep "git difftool" 23879 pts/0 s+ 0:00 git difftool 23935 pts/8 s+ 0:00 grep --color=auto git difftool user@machine:~$ kill -9 23879
see earlier question: how cancel external git diff?
Comments
Post a Comment