mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 04:04:59 +00: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) {
|
public Diff(string repo, string args) {
|
||||||
Cwd = repo;
|
Cwd = repo;
|
||||||
Args = $"diff --ignore-cr-at-eol {args}";
|
Args = $"diff --ignore-cr-at-eol --unified=4 {args}";
|
||||||
}
|
}
|
||||||
|
|
||||||
public Models.TextChanges Result() {
|
public Models.TextChanges Result() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue