stagit

My fork of stagit

git clone git://git.shimmy1996.com/stagit.git
commit 540658a803e9126ec392bfa3053061c96c6faa5f
parent 30d181ec6a3333fc29487af2b8a681a2b706db2e
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat,  4 Apr 2020 20:48:13 -0500

Limit to 100 commits

Diffstat:
Mstagit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stagit.c b/stagit.c
@@ -69,7 +69,7 @@ static char *licensefiles[] = { "HEAD:LICENSE", "HEAD:LICENSE.md", "HEAD:COPYING
 static char *license;
 static char *readmefiles[] = { "HEAD:README", "HEAD:README.md" };
 static char *readme;
-static long long nlogcommits = -1; /* < 0 indicates not used */
+static long long nlogcommits = 100; /* < 0 indicates not used */
 
 /* cache */
 static git_oid lastoid;