2

Windows 用の GitHub (http://windows.github.com/) を使用しています。残念ながら、対話型エディター (たとえば、 git rebase -i ) を必要とするものは、次の方法で失敗しています。

  • Windows用のGitHubが提供するオープンシェル
  • 対話型コマンドを使用します (git rebase -i など)
  • Notepad ++は、gitによって生成されたファイルを開きます
  • このファイルを編集して保存し、閉じます
  • この時点で、git は私の編集に基づいて何かを行う必要がありますが、残念ながら何も起こりません
4

2 に答える 2

0

Close Notepad++ as well.

Solution from http://www.reddit.com/r/git/comments/186uo6/problem_with_interactive_editor_for_git_on_windows/c8c7pi6?context=3

于 2013-02-09T19:11:11.280 に答える
0

git config に core.editor の実行可能ファイル セットへのフル パスがありますか? 次のようなものでない場合: git config --global "/path/to/editor/" が設定されます。

于 2013-01-28T01:17:10.940 に答える