Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7a6eddb
host a git repo: change --bare to --mirror; rename (remove "style")
RubenKelevra May 24, 2022
20cbdbf
modify + edit js content
salmad3 Jul 31, 2022
2bb14f2
add tabs + dependency update
salmad3 Jul 31, 2022
8cca2b4
add tabs + dependency update
salmad3 Jul 31, 2022
2ce9258
add install and node steps
salmad3 Jul 31, 2022
2b53c7a
split node section, add ipfs client + edits
salmad3 Jul 31, 2022
e2b703b
add to sections + edits
salmad3 Aug 1, 2022
82ce0e6
migrate to basics section + tweaks
salmad3 Aug 3, 2022
8c931a6
rmv from reference section
salmad3 Aug 3, 2022
0e301e6
Update docs/basics/go/command-line.md
salmad3 Aug 8, 2022
c4bb7e8
add, retrieve, pin, delete + various edits
salmad3 Aug 9, 2022
53bb793
Merge branch 'main' of github.com:DannyS03/ipfs-docs
salmad3 Aug 9, 2022
c7e958e
migrate package table and modules to api doc
salmad3 Aug 9, 2022
fbb8e45
tweaks to content
salmad3 Aug 9, 2022
fa4e7bd
Fixes tab switching issue.
johnnymatthews Aug 11, 2022
fb10e02
Cleans up formatting. Minor grammar changes.
johnnymatthews Aug 11, 2022
10bfd28
Merge branch 'patch-1' of github.com:RubenKelevra/ipfs-docs into Rube…
salmad3 Aug 15, 2022
6cba76d
Merge branch 'RubenKelevra-patch-1'
salmad3 Aug 15, 2022
5d587b5
Merge branch 'main' of github.com:DannyS03/ipfs-docs
salmad3 Aug 15, 2022
dcf6f77
address pr feedback & tweaks
salmad3 Aug 15, 2022
e12a780
edits
salmad3 Aug 15, 2022
60091c9
add context to implementations, address pr feedback
salmad3 Aug 16, 2022
be81a92
match master
salmad3 Aug 31, 2022
b0cc7d4
temp rmv go dir to fix conflict + edits
salmad3 Aug 31, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ module.exports = {
md.use(require('markdown-it-footnote'))
md.use(require('markdown-it-task-lists'))
md.use(require('markdown-it-deflist')),
md.use(require('markdown-it-imsize')),
md.use(require('markdown-it-image-lazy-loading'))
md.use(require('markdown-it-imsize')),
md.use(require('markdown-it-image-lazy-loading'))
}
},
themeConfig: {
Expand Down Expand Up @@ -86,7 +86,8 @@ module.exports = {
path: '/basics/',
children: [
'basics/desktop-app',
'basics/command-line',
'basics/go/command-line',
'basics/js/js-ipfs',
'basics/ipfs-implementations'
]
},
Expand Down Expand Up @@ -201,7 +202,7 @@ module.exports = {
'/how-to/work-with-pinning-services',
'/how-to/take-snapshot',
'/how-to/store-play-videos',
'/how-to/host-git-style-repo',
'/how-to/host-git-repo',
'/how-to/move-ipfs-installation/move-ipfs-installation'
]
},
Expand Down Expand Up @@ -434,7 +435,8 @@ module.exports = {
}
],
'vuepress-plugin-chunkload-redirect',
'vuepress-plugin-ipfs'
'vuepress-plugin-ipfs',
'tabs'
],
extraWatchFiles: ['.vuepress/nav/en.js']
}
10 changes: 10 additions & 0 deletions docs/.vuepress/theme/styles/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
@import 'video';
@import 'alert-panels';
@import 'ipfs';
@require '~vuepress-plugin-tabs/dist/themes/default.styl'

// apply scrolling by default excluding firefox due to trigger issues
html.smooth-scroll {
Expand Down Expand Up @@ -75,3 +76,12 @@ code {
--code-bg-color: $codeBgColor;
--highlight-color: $highlightColor;
}

section.tabs-component-panel::before {
content: '';
display: block;
position: relative;
width: 0;
height: 10em;
margin-top: -10em;
}
5 changes: 2 additions & 3 deletions docs/basics/command-line.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: "Command-line"
title: IPFS in Golang
description: "A simple walkthrough of how to perform basic IPFS operations using the Kubo command-line."
---

# Basic CLI Operations

This short guide aims to walk you through the basics of using IPFS with the Kubo CLI. Kubo is [one of multiple IPFS implementations](.ipfs-implementations.md). It is the oldest IPFS implementation and exposes a CLI (among other things).
This short guide aims to walk you through the basics of using IPFS with the Kubo CLI. Kubo is [one of multiple IPFS implementations](ipfs-implementations.md). It is the oldest IPFS implementation and exposes a CLI (among other things).

You will learn how to add, retrieve, read, and remove files within the CLI. If you are unsure about the meaning of some terms, you can check out the [glossary](../concepts/glossary.md).

Expand Down Expand Up @@ -261,4 +261,3 @@ If we decide that we no longer want to host a file, all we have to do is remove
```

The target file has now been fully removed from your IPFS node and any other files that we did not pin. If the content that was just garbage collected was saved to your computer's local storage, it is still there. If you wish to remove the content from your computer's local storage, you will need to find where it is saved and delete it using the normal deletion method.

Loading