kubo/cmd/ipfs2
Brian Tiger Chow c8c062fe13 refactor(config/init) add hooks to identity generation. useful for displaying messages to the user
@jbenet this commit re-introduces the peer identity line. It's very
useful. I understand it may have been removed because of the clashing of
the IDs. To alleviate this, this commit places some negative space
between the two lines.

'to test' -> 'to get started' as a stronger call to action

```
λ. ipfs2 init -f
initializing ipfs node at /Users/btc/.go-ipfs
generating key pair...done.
peer identity: QmWzjxNEYKjDAxuHJqvtLP1dZTDjreBSUsArWoHai1v9yP

to get started, enter: ipfs cat QmYpv2VEsxzTTXRYX3PjDg961cnJE3kY1YDXLycHGQ3zZB
```

License: MIT
Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
2014-11-16 08:13:26 -08:00
..
.gitignore ignore binary 2014-11-14 03:20:09 -08:00
daemon.go main + daemon signal handlers 2014-11-16 02:22:43 -08:00
equinox.yaml move new commands to new place 2014-11-14 03:16:05 -08:00
init.go refactor(config/init) add hooks to identity generation. useful for displaying messages to the user 2014-11-16 08:13:26 -08:00
ipfs.go refactor(2/main) helper methods for details object 2014-11-16 07:00:59 -08:00
ipfsHandler.go cmd/ipfs2: Added explanation comment to ipfsHandler 2014-11-14 03:17:40 -08:00
main_test.go tests(2/main) errClient 2014-11-14 03:20:07 -08:00
main.go fix(misc) address PR comments 2014-11-16 07:40:05 -08:00
Makefile move new commands to new place 2014-11-14 03:16:05 -08:00
README.md cmd/ipfs2: Updated readme 2014-11-14 03:17:40 -08:00
tour_test.go fix(test) tour content struct now exists 2014-11-14 03:31:06 -08:00
tour.go rm todos 2014-11-14 03:20:08 -08:00

go-ipfs/cmd/ipfs

This is the ipfs commandline tool. For now, it's the main entry point to using IPFS. Use it.

> go build
> go install
> ipfs
ipfs - global versioned p2p merkledag file system

Basic commands:

    init          Initialize ipfs local configurationx
    add <path>    Add an object to ipfs
    cat <ref>     Show ipfs object data
    ls <ref>      List links from an object

Tool commands:

    config        Manage configuration
    update        Download and apply go-ipfs updates
    version       Show ipfs version information
    commands      List all available commands

Advanced Commands:

    mount         Mount an ipfs read-only mountpoint
    serve         Serve an interface to ipfs
    diag          Print diagnostics

Plumbing commands:

    block         Interact with raw blocks in the datastore
    object        Interact with raw dag nodes


Use "ipfs help <command>" for more information about a command.