├── .gitignore ├── .mds-list ├── README.md ├── assets ├── README.md └── README.zh.md ├── cmd ├── ipfs │ └── dist │ │ ├── README.md │ │ └── README.zh.md └── ipfswatch │ ├── README.md │ └── README.zh.md ├── contribute.zh.md ├── docs ├── README.md ├── README.zh.md ├── command-completion.md ├── command-completion.zh.md ├── config.md ├── config.zh.md ├── datastores.md ├── datastores.zh.md ├── debug-guide.md ├── debug-guide.zh.md ├── developer-certificate-of-origin ├── experimental-features.md ├── experimental-features.zh.md ├── file-transfer.md ├── file-transfer.zh.md ├── fuse.md ├── fuse.zh.md ├── gateway.md ├── gateway.zh.md ├── github-issue-guide.md ├── github-issue-guide.zh.md ├── implement-api-bindings.md ├── implement-api-bindings.zh.md ├── openbsd.md ├── openbsd.zh.md ├── plugins.md ├── plugins.zh.md ├── releases.md ├── releases.zh.md ├── transports.md ├── transports.zh.md ├── windows.md └── windows.zh.md ├── en.md ├── misc └── launchd │ ├── README.md │ └── README.zh.md ├── sync-en.sh ├── test ├── 3nodetest │ ├── README.md │ ├── README.zh.md │ ├── bootstrap │ │ ├── README.md │ │ └── README.zh.md │ └── server │ │ ├── README.md │ │ └── README.zh.md ├── README.md ├── README.zh.md ├── dependencies │ └── go-sleep │ │ ├── README.md │ │ └── README.zh.md └── sharness │ ├── README.md │ └── README.zh.md └── thirdparty ├── README.md └── README.zh.md /.gitignore: -------------------------------------------------------------------------------- 1 | docs1 2 | source -------------------------------------------------------------------------------- /.mds-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/.mds-list -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/assets/README.zh.md -------------------------------------------------------------------------------- /cmd/ipfs/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/cmd/ipfs/dist/README.md -------------------------------------------------------------------------------- /cmd/ipfs/dist/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/cmd/ipfs/dist/README.zh.md -------------------------------------------------------------------------------- /cmd/ipfswatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/cmd/ipfswatch/README.md -------------------------------------------------------------------------------- /cmd/ipfswatch/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/cmd/ipfswatch/README.zh.md -------------------------------------------------------------------------------- /contribute.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/contribute.zh.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/README.zh.md -------------------------------------------------------------------------------- /docs/command-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/command-completion.md -------------------------------------------------------------------------------- /docs/command-completion.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/command-completion.zh.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/config.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/config.zh.md -------------------------------------------------------------------------------- /docs/datastores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/datastores.md -------------------------------------------------------------------------------- /docs/datastores.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/datastores.zh.md -------------------------------------------------------------------------------- /docs/debug-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/debug-guide.md -------------------------------------------------------------------------------- /docs/debug-guide.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/debug-guide.zh.md -------------------------------------------------------------------------------- /docs/developer-certificate-of-origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/developer-certificate-of-origin -------------------------------------------------------------------------------- /docs/experimental-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/experimental-features.md -------------------------------------------------------------------------------- /docs/experimental-features.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/experimental-features.zh.md -------------------------------------------------------------------------------- /docs/file-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/file-transfer.md -------------------------------------------------------------------------------- /docs/file-transfer.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/file-transfer.zh.md -------------------------------------------------------------------------------- /docs/fuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/fuse.md -------------------------------------------------------------------------------- /docs/fuse.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/fuse.zh.md -------------------------------------------------------------------------------- /docs/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/gateway.md -------------------------------------------------------------------------------- /docs/gateway.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/gateway.zh.md -------------------------------------------------------------------------------- /docs/github-issue-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/github-issue-guide.md -------------------------------------------------------------------------------- /docs/github-issue-guide.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/github-issue-guide.zh.md -------------------------------------------------------------------------------- /docs/implement-api-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/implement-api-bindings.md -------------------------------------------------------------------------------- /docs/implement-api-bindings.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/implement-api-bindings.zh.md -------------------------------------------------------------------------------- /docs/openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/openbsd.md -------------------------------------------------------------------------------- /docs/openbsd.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/openbsd.zh.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/plugins.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/plugins.zh.md -------------------------------------------------------------------------------- /docs/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/releases.md -------------------------------------------------------------------------------- /docs/releases.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/releases.zh.md -------------------------------------------------------------------------------- /docs/transports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/transports.md -------------------------------------------------------------------------------- /docs/transports.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/transports.zh.md -------------------------------------------------------------------------------- /docs/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/windows.md -------------------------------------------------------------------------------- /docs/windows.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/docs/windows.zh.md -------------------------------------------------------------------------------- /en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/en.md -------------------------------------------------------------------------------- /misc/launchd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/misc/launchd/README.md -------------------------------------------------------------------------------- /misc/launchd/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/misc/launchd/README.zh.md -------------------------------------------------------------------------------- /sync-en.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/sync-en.sh -------------------------------------------------------------------------------- /test/3nodetest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/3nodetest/README.md -------------------------------------------------------------------------------- /test/3nodetest/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/3nodetest/README.zh.md -------------------------------------------------------------------------------- /test/3nodetest/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/3nodetest/bootstrap/README.md -------------------------------------------------------------------------------- /test/3nodetest/bootstrap/README.zh.md: -------------------------------------------------------------------------------- 1 | 这是一个带有空引导列表的引导(bootstrap)节点. 2 | 3 | 它监听 4011 和 4012 4 | -------------------------------------------------------------------------------- /test/3nodetest/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/3nodetest/server/README.md -------------------------------------------------------------------------------- /test/3nodetest/server/README.zh.md: -------------------------------------------------------------------------------- 1 | **要求** 2 | 3 | - 具有链接为"bootstrap"的引导节点的 docker 容器,ID 为 `QmNXuBh8HFsWq68Fid8dMbGNQTh7eG6hV9rr1fQyfmfomE` 4 | - 数据卷中的文件,内部映射到 `/data/file` 5 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/README.md -------------------------------------------------------------------------------- /test/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/README.zh.md -------------------------------------------------------------------------------- /test/dependencies/go-sleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/dependencies/go-sleep/README.md -------------------------------------------------------------------------------- /test/dependencies/go-sleep/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/dependencies/go-sleep/README.zh.md -------------------------------------------------------------------------------- /test/sharness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/sharness/README.md -------------------------------------------------------------------------------- /test/sharness/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/test/sharness/README.zh.md -------------------------------------------------------------------------------- /thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/thirdparty/README.md -------------------------------------------------------------------------------- /thirdparty/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/go-ipfs-zh/HEAD/thirdparty/README.zh.md --------------------------------------------------------------------------------