ssh-agent (PID 11108, closing is required)

Fat*_*ela 3 git uninstallation git-bash

Please help me close the following:
I want to uninstall git from my windows machine, and I cannot because of the following popup error message:

混帐

Von*_*onC 9

Try, from a CMD, the commands:

taskkill /F /PID 11108
taskkill /F /PID 22668
Run Code Online (Sandbox Code Playgroud)

You might have to open CMD as admin, for the taskkill to complete.


正如mwtmurphy在评论中所评论的:

执行此操作时使用 Git Bash 的附加组件,使用//代替/命令前缀。

所以:

bash

$ taskkill //F //PID 11108
$ taskkill //F //PID 22668
Run Code Online (Sandbox Code Playgroud)

  • @FatgezimBela 太棒了!不要忘记阅读 https://stackoverflow.com/help/accepted-answer (2认同)