Git comes with two default UI tools (on Windows at least): Git GUI and Gitk.

When browsing a commit, Gitk has a checkbox called "Ignore space changes" that makes the diff show only non-space related changes.

However, Git GUI always shows the full diff, and there is no equivalent checkbox.

Is there a way for getting Git GUI to ignore space changes too?

有帮助吗?

解决方案

Answering myself...

In the Git GUI main menu go to Edit -> Options. In Additional Diff Parameters put -w (or --ignore-all-space).

In fact, any other git-diff parameter can go there too.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top