keybase / keybase-issues

A single repo for managing publicly recognized issues with the keybase client, installer, and website.
902 stars 37 forks source link

How to pull all tracking user public keys locally using keybase cli tool? #1584

Open Natim opened 9 years ago

Natim commented 9 years ago

I tryied keybase pull without success

pkirkovsky commented 9 years ago

It looks like keybase pull is only for your own key.

Here's a hackish solution for re-adding all your tracked users back to your local gpg key list:

keybase list-tracking | xargs keybase track

Natim commented 9 years ago

Yeah I tried this but it doesn't work either.

keybase track: error: Unrecognized arguments: user1 user2 user3 ...
Natim commented 9 years ago

It is more something like: for u in $(keybase list-tracking); do keybase track "$u"; done but keybase pull-tracking would be easier.

pkirkovsky commented 9 years ago

Sorry, I should've checked the keybase list-tracking output more carefully instead of making assumptions.

I confirmed that keybase list-tracking | xargs -L 1 keybase track does work as intended.

Natim commented 9 years ago

Ok great, maybe it worth adding it to the documentation?