Show renames changes by default

Now that we have support to show file renames, we can
enable it by default in all the diffs that we use.
This commit is contained in:
Pieter de Bie
2009-01-25 17:32:37 +00:00
parent e2d47cb049
commit 22f4ac3f13
+1 -1
View File
@@ -73,7 +73,7 @@
if (details != nil)
return details;
details = [self.repository outputForCommand:[@"show --pretty=raw " stringByAppendingString:[self realSha]]];
details = [self.repository outputForArguments:[NSArray arrayWithObjects:@"show", @"--pretty=raw", @"-M", [self realSha], nil]];
return details;
}