The /config/ page should log git errors instead of silently ignore them.
I'm talking about this page:
https://we.phorge.it/source/phorge/browse/master/src/applications/config/controller/PhabricatorConfigConsoleController.php;b1b3fe0ff0a623223f84503c5bd7f4f599d3f9d8$185-188
Specific potentially problematic code:
```lang=php
list($err, $stdout) = $remote_future->resolve();
if ($err) {
// If this fails for whatever reason, just move on.
continue;
}
```