I decided to unwatch many repos in multiple organizations. Here are two scripts that I wrote to make that possible. It works like:
node get-all-watched.js > all-watching.txt
to dump all watching into a text filegrep "^developmentseed" all-watching > developmentseed.txt
, for instance, to make a text file of only repos in the developmentseed org that I’m watchingnode unwatch-file-of-repos.js developmentseed.txt
to unwatch all those repos.