我在linux上看过它。你可以打开一个只是一个shell的控制台。我只想在windows中使用cmd或者使用git bash进行同样的操作。 (MINGW32)。我试着谷歌搜索它,但只是充斥着关于egit和普通git bash的文章。
答案 0 :(得分:1)
如果您有msysgit,则可以在常规cmd会话中使用它:
启动c:\windows\system32\cmd.exe /k <path\to\your\msysgit>\git-cmd.bat
,您可以输入该cmd windows regular git命令。
对于bash会话:c:\windows\system32\cmd.exe /k <path\to\your\msysgit>\git-bash.bat
。
请注意,您需要修改这些蝙蝠:
git-cmd.bat
:在setlocal
命令之前和结束之前添加一个rem。git-bash.bat
:在setlocal
命令之前添加一个rem。因此,您可以在Eclipse中添加 external tool which will open a cmd in your console :
除了调用C:\windows\system32\cmd.exe
(在上图中的“Location
”字段中),您可以直接致电:C:\windows\system32\cmd.exe /k <path\to\your\msysgit>\git-bash.bat
。
通过'msysgit',我指的是你对未经评估的便携式版本“Git For Windows”提供的任何名称:download it there。
然后你可以在Eclipse控制台中输入git命令(包括 bash 会话)!
经过测试,颜色代码会妨碍,即使git有效:
git-cmd.bat
:
git-bash.bat
: