mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
feature: respect global commit limit for a good measure
This commit is contained in:
parent
0ea0cb4909
commit
c0eba5121e
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using SourceGit.ViewModels;
|
||||||
|
|
||||||
namespace SourceGit.Commands
|
namespace SourceGit.Commands
|
||||||
{
|
{
|
||||||
|
@ -12,7 +13,7 @@ namespace SourceGit.Commands
|
||||||
_commit = commit;
|
_commit = commit;
|
||||||
if (string.IsNullOrEmpty(filters))
|
if (string.IsNullOrEmpty(filters))
|
||||||
filters = "--all";
|
filters = "--all";
|
||||||
Args = $"rev-list --parents {filters} ^{commit}";
|
Args = $"rev-list -{Preference.Instance.MaxHistoryCommits} --parents {filters} ^{commit}";
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnReadline(string line)
|
protected override void OnReadline(string line)
|
||||||
|
|
Loading…
Reference in a new issue