-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: cosmetic fixes of help text #8010
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -288,29 +288,34 @@ Basic proof of 'ipfs working' locally: | |
|
||
SUBCOMMANDS | ||
BASIC COMMANDS | ||
init Initialize ipfs local configuration | ||
add <path> Add a file to ipfs | ||
cat <ref> Show ipfs object data | ||
get <ref> Download ipfs objects | ||
init Initialize local IPFS configuration | ||
add <path> Add a file to IPFS | ||
cat <ref> Show IPFS object data | ||
get <ref> Download IPFS objects | ||
ls <ref> List links from an object | ||
refs <ref> List hashes of links from an object | ||
|
||
DATA STRUCTURE COMMANDS | ||
dag Interact with IPLD DAG nodes | ||
files Interact with files as if they were a unix filesystem | ||
object Interact with dag-pb objects (deprecated, use 'dag' or 'files') | ||
block Interact with raw blocks in the datastore | ||
object Interact with raw dag nodes | ||
files Interact with objects as if they were a unix filesystem | ||
|
||
ADVANCED COMMANDS | ||
daemon Start a long-running daemon process | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Start IPFS as a daemon (process)" How long doesn't matter for this command to work There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
mount Mount an ipfs read-only mount point | ||
mount Mount an IPFS read-only mount point | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean, yeah we only support read-only mount points... but I don't think this command is in general limited to this. Also, the sentence is a bit confusing... what is an "IPFS read-only mount point" exactly? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
resolve Resolve any type of name | ||
name Publish or resolve IPNS names | ||
name Publish and resolve IPNS names | ||
key Create and list IPNS name keypairs | ||
dns Resolve DNS links | ||
pin Pin objects to local storage | ||
repo Manipulate an IPFS repository | ||
repo Manipulate the IPFS repository | ||
stats Various operational stats | ||
p2p Libp2p stream mounting | ||
filestore Manage the filestore (experimental) | ||
|
||
NETWORK COMMANDS | ||
id Show info about ipfs peers | ||
id Show info about IPFS peers | ||
bootstrap Add or remove bootstrap peers | ||
swarm Manage connections to the p2p network | ||
dht Query the DHT for values or peers | ||
|
@@ -319,9 +324,11 @@ SUBCOMMANDS | |
|
||
TOOL COMMANDS | ||
config Manage configuration | ||
version Show ipfs version information | ||
version Show IPFS version information | ||
update Download and apply go-ipfs updates | ||
commands List all available commands | ||
cid Convert and discover properties of CIDs | ||
log Manage and show logs of running daemon | ||
|
||
Use 'ipfs <command> --help' to learn more about each command. | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like we should add, that the file/object isn't only fetched to the local node, but also stored in the current working directory in a new folder which is named after the CID.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mind opening a separate PR with your suggestions?
I'd like to keep this one scoped to known fixes and avoid bikeshed :)