Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i solve the problem when closing git console that says "Processes are running in session"

I am currently working with the git commands. When I direct into my folder, where the git repository is at everything works. When i then say "git log" it prints all my commits. But then i cant type again any command. It just says: "no next tag (press RETURN)". When i then try to close git it pops up a window with the name "mintty". It says: "Processes are running in session..." How can i solve this problem that i can type in another git command or close git properly?

I can say "ok" and then my git closes, but this cannot be the solution for this problem.

I expect to write some new commands into the console and i expect to close git without this error message, that processes are still running.

Thank you!

like image 403
slaayaah Avatar asked Sep 16 '25 13:09

slaayaah


1 Answers

Running git log starts an interactive session that allows you to scroll through the output. For example, you can press space to move to the next page and use up and down arrows to navigate through the logs. To exit this, press q. This will return you to the command line prompt. Then you can type another command or quit the Git Bash or CMD session by closing the window.

like image 80
Code-Apprentice Avatar answered Sep 19 '25 03:09

Code-Apprentice