我在Windows pc上使用git版本2.7.0.windows.1,我使用了以下命令:

$ nano README

结果我:
bash: nano: command not found

现在如何将nano文本编辑器安装到git bash?

最佳答案

在Windows 10上(不使用Chocolatey),对我之前的解决方案(@Simopaa)进行了很少的修改:

  • 下载nano-git
  • nano-git-xxx.exe移动到(例如)C:\Program Files\Git\bin
  • 使用以下命令修改.gitconfig文件(单引号双引号很重要):
    [core]
    editor = "winpty '/c/Program Files/Git/bin/nano-git-0d9a7347243.exe'"
    
  • (可选步骤)使nano通常可用于编辑:

    使用以下命令创建或编辑bash的启动脚本之一(例如~/.bash_profile):
    export PATH="/c/Program Files/Git/bin:$PATH"
    alias nano="winpty nano"
    
  • 关于windows - bash : nano: command not found at Windows git bash,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36802996/

    10-12 05:59