In the webapp I can see which repos have syncing enabled or disabled, and toggle the property by clicking the current status. How can I do this in the terminal? I want to be able to see the current syncing status of the repository, and to change it, without opening the webapp.
The webapp is changing the git configuration "remote..annex-sync" to false to disable and back to true to enable.
You can use
git config
to change that yourself.However, if you have the assistant running in the background and make such a git configuration change, it won't notice the change, and will keep running with the old configuration. So you'll want to restart it by running
git annex assistant --stop; git annex assistant