2

Sublime Text 3 とGitパッケージを使用してリポジトリを管理しています。Meldツール (Meld v3.14.2)を使用するように.gitconfigファイルをセットアップしました。

[diff]
    external = meld
    tool = meld

コマンドプロンプトから$ git difftool問題なく起動できます。

Git Diff Tool Current File以前はおよびGit Diff Tool Allコマンドを使用して、git パッケージで同じことができました。Sublime Text 3 を再インストールした後、これら 2 つのアクションのいずれかを実行しようとすると、Sublime の下部にウィンドウが表示され、次のように尋ねられます。

Viewing (1/1): 'test.py'
Launch 'meld' [Y/n]: 

ここにテキストを入力することはできません。さらに、以前は入力する必要がありませんでした。試しGit Diff Current fileてみると、次の新しいタブが開きます。

Usage: 
  meld                                 Iniciar con una ventana vacía
  meld <archivo|carpeta>               Iniciar una comparación de control de versiones
  meld <archivo> <archivo> [<archivo>] Iniciar una comparación de archivo de 2 ó 3 vías
  meld <carpeta> <carpeta> [<carpeta>] Iniciar una comparación de carpetas de 2 ó 3 vías

Error: too many arguments (expected 0-3, got 7)

fatal: External Diff died, stopping at test.py

(スペイン語からの大まかな翻訳) Meld への引数が適切に渡されていないようです。これは私のデフォルトの構成ファイルです。ユーザー構成はありません。

{
    // save before running commands
    "save_first": true

    // if present, use this command instead of plain "git"
    // e.g. "/Users/kemayo/bin/git" or "C:\bin\git.exe"
    ,"git_command": false

    // if present, use this command instead of plain "gitk"
    // e.g. "/Users/kemayo/bin/gitk" or "C:\bin\gitk.exe"
    ,"gitk_command": false

    // point this the installation location of git-flow
    ,"git_flow_command": "/usr/local/bin/git-flow"

    // use the panel for diff output, rather than a new scratch window (new tab)
    ,"diff_panel": false

    // If you'd rather have your status command open files instead of show you a
    // diff, set this to true.  You can still do `Git: Status` followed by
    // 'Git: Diff Current File' to get a file diff
    ,"status_opens_file": false

    // Use --verbose flag for commit messages
    ,"verbose_commits": true

    // How many commit messages to store in the history. Set to 0 to disable.
    ,"history_size": 5

    // Show git flow commands
    ,"flow": false

    // Annotations default to being on for all files. Can be slow in some cases.
    ,"annotations": false

    // statusbar
    ,"statusbar_branch": true
    // Symbols for quick git status in status bar
    ,"statusbar_status": true
    ,"statusbar_status_symbols" : {"modified": "≠", "added": "+", "deleted": "×", "untracked": "?", "conflicts": "‼", "renamed":"R", "copied":"C", "clean": "✓", "separator": " "}

    // e.g. "Packages/Git/syntax/Git Commit Message.tmLanguage"
    ,"diff_syntax": "Packages/Diff/Diff.tmLanguage"

    // Rulers for commit view
    ,"commit_rulers": [70]

    // Watch for gitignore changes?
    ,"gitignore_sync": false
}
4

1 に答える 1