代码之家  ›  专栏  ›  技术社区  ›  Ilyes Ghomrani

与ST3相关的git提交错误

  •  1
  • Ilyes Ghomrani  · 技术社区  · 6 年前

    我创建了一个新的本地存储库并对其进行了初始化,然后将ST3定义为默认编辑器

    git config --global core.editor "'C:\Program Files\Sublime Text 3\sublime_text.exe' -w"
    

    我犯了这个错误

    hint: Waiting for your editor to close the file... Skipping command-line '"C:\Users\Sony\bin\..\usr\bin\bash.exe"'
    ('C:\Users\Sony\bin\..\usr\bin\bash.exe' not found)
    Need a valid command-line; Edit the string recources accordingly
    error: There was a problem with the editor ''C:\Program Files\Sublime Text 3\sublime_text.exe' -w'.
    Please supply the message using either -m or -F option
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   VonC    6 年前

    改为尝试,如 shown here :

    git config --global core.editor "'C:/Program Files/Sublime Text 3/subl.exe' -w"
    

    这是 also documented by GitHub

    由于引号(simple和double)的解释方式,从CMD(而不是bash会话)执行时,效果会更好。