From 92a133b09a99ded4544c19c213664def0cacd878 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Tue, 28 Jan 2014 23:38:35 +0200 Subject: [PATCH] Git: Increase limit in LogChangeDialog to 1000 entries Task-number: QTCREATORBUG-11200 Change-Id: Iff6073c4f84926a18006c1f47b30a0525134c2ba Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> --- src/plugins/git/logchangedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/logchangedialog.cpp b/src/plugins/git/logchangedialog.cpp index e0ccee6875b..16c1abdadf7 100644 --- a/src/plugins/git/logchangedialog.cpp +++ b/src/plugins/git/logchangedialog.cpp @@ -153,7 +153,7 @@ bool LogChangeWidget::populateLog(const QString &repository, const QString &comm // Retrieve log using a custom format "Sha1:Subject [(refs)]" GitClient *client = GitPlugin::instance()->gitClient(); QStringList arguments; - arguments << QLatin1String("--max-count=40") << QLatin1String("--format=%h:%s %d"); + arguments << QLatin1String("--max-count=1000") << QLatin1String("--format=%h:%s %d"); arguments << (commit.isEmpty() ? QLatin1String("HEAD") : commit); if (!(flags & IncludeRemotes)) arguments << QLatin1String("--not") << QLatin1String("--remotes"); -- GitLab