You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i just ran ipfs add <tons of files>. tons of stuff ended up in my local data store. i want to remove it. like now. where's the ipfs rm <tons of files>?
assuming that's the only thing i did, can i rm -rf $IPFS_DIR/datastore? (seems that no: #245).
i know about the pin command set, but the semantics are confusing to me (and others, #590).
thanks
The text was updated successfully, but these errors were encountered:
First time user here. I'm also confused on this. There is a way to add, but where is the remove? Is unpinning what I want? From the pin example I see add automatically creates a recursive pin. It must do something else besides pinning. I thought I'd figure it out from the code but it's greek to me, what a strange language, looks fun, maybe I'll learn.
We need more documentation around this operation, but the current method of removing content from your local datastore is to unpin it, then run an ipfs repo gc
ipfs rm would be a somewhat misleading command, you could do ipfs add <file that already exists elsewhere on the network>, ipfs rm <that> and then still ipfs cat <that> and it would reappear. What really needs to be done here is not ipfs rm but better pinning semantics (maybe get rid of pinning (see the end of #257 and also in #590)
i just ran
ipfs add <tons of files>
. tons of stuff ended up in my local data store. i want to remove it. like now. where's theipfs rm <tons of files>
?assuming that's the only thing i did, can i
rm -rf $IPFS_DIR/datastore
? (seems that no: #245).i know about the
pin
command set, but the semantics are confusing to me (and others, #590).thanks
The text was updated successfully, but these errors were encountered: