Project

General

Profile

Actions

Feature #11414

open

Ignore whitespace when using GIT

Added by Jaroslaw Bogusz over 11 years ago. Updated over 9 years ago.

Status:
New
Priority:
Low
Assignee:
-
Category:
SCM
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:

Description

By default, Redmine's diff reports any whitespace differences. To turn this off please edit:

/home/redmine/lib/redmine/scm/adapters/git_adapter.rb

locate the lines:

if identifier_to
cmd_args << "diff" << "--no-color" <<  identifier_to << identifier_from
else
cmd_args << "show" << "--no-color" << identifier_from
end

and change them to:

if identifier_to
cmd_args << "diff" << "--no-color" <<  "-w" << identifier_to << identifier_from
else
cmd_args << "show" << "--no-color" << "-w" << identifier_from
end

Related issues

Related to Redmine - Patch #1476: Ignore whitespace when using SVN (requires installation of gnu diff)New2008-06-16

Actions
Related to Redmine - Feature #14034: Ability to choose diff algorithm type for git (patience, histogram)New

Actions
Related to Redmine - Feature #2235: Differential: New Line changesNew2008-11-26

Actions
Actions #1

Updated by Etienne Massip over 11 years ago

  • Category set to SCM
Actions #2

Updated by Denny Schäfer over 11 years ago

In my opinion it should be a option under the settings point repositories.

Actions #3

Updated by Toshi MARUYAMA over 11 years ago

  • Status changed from Resolved to New
  • Resolution deleted (Fixed)
Actions #4

Updated by Prof. Dr. YoMan almost 11 years ago

+1

Actions #5

Updated by Mathias Fischer almost 10 years ago

+1 would be very helpful for code reviews

Actions #6

Updated by Anonymous over 9 years ago

+1
In a previous version I hacked in a setting at the top of the diff page that turned on and off whitespace ignoring, like the inline versus side-by-side setting. It worked well in my case, but isn't worthy of a patch because it only worked for Subversion. Doing it properly would require passing some options down through the scm models.

Actions #7

Updated by Toshi MARUYAMA over 7 years ago

Actions

Also available in: Atom PDF