@cryptotaxi247 / kubo / commits / 2df514c4f

Change object to file

License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>

Richard Littauer committed Jan 21, 2016 at 12:45 UTC 2df514c4f22bcef101104fb6cb4e5e17f3c58f95
3 files changed +3 -3
README.md
+1 -1
@@ -94,7 +94,7 @@ USAGE:
94 BASIC COMMANDS
95
96 init Initialize ipfs local configuration
97 - add <path> Add an object to ipfs
97 + add <path> Add a file to ipfs
98 cat <ref> Show ipfs object data
99 get <ref> Download ipfs objects
100 ls <ref> List links from an object
core/commands/add.go
+1 -1
@@ -30,7 +30,7 @@ const (
30
31 var AddCmd = &cmds.Command{
32 Helptext: cmds.HelpText{
33 - Tagline: "Add an object to ipfs.",
33 + Tagline: "Add a file to ipfs.",
34 ShortDescription: `
35 Adds contents of <path> to ipfs. Use -r to add directories.
36 Note that directories are added recursively, to form the ipfs
core/commands/root.go
+1 -1
@@ -32,7 +32,7 @@ ipfs [<flags>] <command> [<arg>] ...
32 BASIC COMMANDS
33
34 init Initialize ipfs local configuration
35 - add <path> Add an object to ipfs
35 + add <path> Add a file to ipfs
36 cat <ref> Show ipfs object data
37 get <ref> Download ipfs objects
38 ls <ref> List links from an object