Skip to content

Commit

Permalink
Merge pull request #260 from amberin/git-auto-gc
Browse files Browse the repository at this point in the history
Further lower the Git auto gc threshold
  • Loading branch information
amberin committed May 25, 2024
2 parents b80febd + a9b28f7 commit 876ff6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/orgzly/android/repos/GitRepo.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private static GitRepo build(long id, GitPreferences prefs, boolean clone) throw
config.setString("remote", prefs.remoteName(), "url", prefs.remoteUri().toString());
config.setString("user", null, "name", prefs.getAuthor());
config.setString("user", null, "email", prefs.getEmail());
config.setString("gc", null, "auto", "1500");
config.setString("gc", null, "auto", "256");
config.save();

return new GitRepo(id, git, prefs);
Expand Down

0 comments on commit 876ff6e

Please sign in to comment.