Bruce Korb wrote:
...
> Now a curiosity question:  How did you get git to do this:
>
>  tests/{misc/fmt => fmt/base}                |    0
>  tests/fmt/goal-option                       |   56 
> +++++++++++++++++++++++++++
>  tests/{misc/fmt-long-line => fmt/long-line} |    0

I ran this command:

    git config --global diff.renames true

which put these lines in ~/.gitconfig:

[diff]
        renames = true

diff.renames is documented in git-config(1).

Reply via email to