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.

  1. click x close shell window running git.
  2. hit control+c kill git process in shell running git.
  3. 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

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -