Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't Stop Terminal in VS Code

I want to stop terminal in VS Code with CTRL + C but instead of stopping it, it shows ^C (GitBash)/copy directory (CMD). Because of that, I decided to kill the terminal. How to deal with that?

like image 460
Ernest Daniel Avatar asked Oct 19 '25 04:10

Ernest Daniel


1 Answers

Use Ctrl + D to log out of the terminal, and automatically close it.

Ctrl + C just sends a SIGINT to the process, which is usually causing it to abort, but it's up to the application to decide.

You can read more about it here.

like image 140
Dorin Botan Avatar answered Oct 22 '25 02:10

Dorin Botan