Home > Back-end >  When I execute (idea .) in git bash (Intellij Idea opens But) its stops until I close the intellij i
When I execute (idea .) in git bash (Intellij Idea opens But) its stops until I close the intellij i

Time:02-02

USER@DESKTOP-COMPUTER MINGW64 /f/NewFolder/Learning
$ idea .
(Cursor stays here until I close Idea) 

CMD does not behave like this. After opening Idea CMD returns to its original form where it can accept code.

THIS ONLY HAPPENS WITH INTELLIJ (IDEA, Pycharm, etc), VSCODE ATOM WORKS FINE IN GIT BASH

How Can I overcome this problem with git bash?

CodePudding user response:

try app . &:

you should run it in detached mode

e.g

rider . &
  •  Tags:  
  • Related