After
git config for-each-ref.count 2
running
git for-each-ref refs/heads
shows lots of output, while
git for-each-ref --count=2 refs/heads
only shows two, as required.
It seems as if git for-each-ref
does not use options set with git-config
. If it does, how can I get it to work?