mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
optimize<Diff>: show 4 context lines on diff
This commit is contained in:
parent
92de6f2b79
commit
18f35449e5
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ namespace SourceGit.Commands {
|
|||
|
||||
public Diff(string repo, string args) {
|
||||
Cwd = repo;
|
||||
Args = $"diff --ignore-cr-at-eol {args}";
|
||||
Args = $"diff --ignore-cr-at-eol --unified=4 {args}";
|
||||
}
|
||||
|
||||
public Models.TextChanges Result() {
|
||||
|
|
Loading…
Reference in a new issue