avoid spurious blank line when updating adjusted branch

git checkout run with --quiet should have no output
This commit is contained in:
Joey Hess 2020-11-16 14:31:02 -04:00
parent 0896038ba7
commit 557a6e11a6
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 16 additions and 16 deletions

View file

@ -1023,11 +1023,12 @@ Like other git commands, git-annex is configured via `.git/config`.
controls how frequently the branch is refreshed.
Refreshing the branch takes some time, so doing it after every file
can be too slow. The default value is 0 (or false), which does not
refresh the branch. 1 (or true) will refresh once, after git-annex
has made other changes. Higher values refresh after approximately that
many files need to be updated. Ie, 2 refreshes after every file,
and 100 after every 99 files.
can be too slow. (It also can generate a lot of dangling git objects.)
The default value is 0 (or false), which does not
refresh the branch. Setting 1 (or true) will refresh only once,
after git-annex has made other changes. Setting 2 refreshes after every
file, 3 after every other file, and so on; setting 100 refreshes after
every 99 files.
(If git-annex gets faster in the future, refresh rates will increase
proportional to the speed improvements.)