
git-difftool
List of commands for git-difftool:
-
git-difftool:tldr:05816 git-difftool: Use the default diff tool to show staged changes.$ git difftool --stagedtry on your machineexplain this command
-
git-difftool:tldr:4c66a git-difftool: Use a specific tool (opendiff) to show changes since a given commit.$ git difftool --tool=${opendiff} ${commit}try on your machineexplain this command
-
git-difftool:tldr:aeb73 git-difftool: List available diff tools.$ git difftool --tool-helptry on your machineexplain this command
-
git-difftool:tldr:f188c git-difftool: Set the default diff tool to meld.$ git config --global diff.tool "${meld}"try on your machineexplain this command