William Entriken
William Entriken

Reputation: 39243

Unset git configuration

I am using FileMerge on Mac for viewing diffs and have set it up with:

git config --global diff.external ~/bin/git-diff-cmd.sh

Now I no longer want to use FileMerge, how do I go back to the default I had before this?

Upvotes: 5

Views: 3279

Answers (1)

Collin
Collin

Reputation: 12267

Use --unset From the man page:

--unset
    Remove the line matching the key from config file.

Upvotes: 11

Related Questions