문제

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