我们可以从原子文本编辑器中打开gitbash吗


8

有没有办法从原子文本编辑器中打开gitbash。我想在其中一个窗格中具有gitbash或其他命令行客户端。

Answers:




1

我们可以!

您还可以在您的原子包管理器中搜索“ terminal-status”。

请记住要重新启动原子以使终端状态开始工作。编码愉快!


1

(Windows 10,终端+ v0.14.5软件包,原子v1.8.0,git-bash 2.9.0.1),链接的讨论中引用的这些部分对我来说很干净(原始来源:https : //github.com/jeremyramin/ terminal-plus / issues / 117):

Git Bash在Windows上的新窗口中打开(终端加问题#117)

matthewcanty(2015-12-03):默认终端是Powershell,但我希望它是Git Bash。我已将Shell Override设置为,C:\Program Files\Git\git-bash.exe但这会在新窗口中打开。

matthewcanty(2015-12-03,稍后回答并结束他自己的问题)

Shell Override: C:\Program Files\Git\bin\sh.exe
Shell Arguments: --login


0

您可以使用Nuclide Terminal进行此操作,并在其中进行以下设置$HOME/.nuclide-terminal.json

{
  "command": [
    "C:\\Program Files\\Git\\git-cmd.exe",
    "--command=usr/bin/bash.exe -l -i"
  ]
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.