How to detach “git gui” started in “Git bash” on Windows?

后端 未结 5 1593
南笙
南笙 2021-02-06 05:22

For example,

  1. I start \"git bash\";
  2. I navitage to certian directory;
  3. I start git gui&;
  4. I close the console window or pre
5条回答
  •  孤独总比滥情好
    2021-02-06 06:16

    The following command works for me from "git bash":

    git gui /dev/null 2>&1 &
    

    I tried Ctrl+C, Ctrl+D and simply closing the console window. git gui stayed open in all cases.

提交回复
热议问题