and make it never match. This also applies to
"not balanced" and "not sizebalanced".
* Fix --explain display of onlyingroup preferred content expression.
+ * Allow maxsize to be set to 0 to stop checking maxsize for a repository.
-- Joey Hess <id@joeyh.name> Tue, 03 Sep 2024 12:38:42 -0400
threshhold <- annexFullyBalancedThreshhold <$> Annex.getGitConfig
let toofull u =
case (M.lookup u maxsizes, M.lookup u sizemap) of
+ (Just (MaxSize 0), _) -> False
(Just (MaxSize maxsize), Just (RepoSize reposize)) ->
fromIntegral reposize >= fromIntegral maxsize * threshhold
_ -> False
gigabyte, then it would make sense to run
`git-annex maxsize here "999 gigabytes"`
+To stop checking maximum size of a repository, set the maxsize to 0.
+
# OPTIONS
* `--bytes`