Skip to content

Commit

Permalink
Added a downgrading guide doc
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardLitt committed Dec 15, 2015
1 parent e9b1683 commit 4a1938a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions downgrading.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## Automatically using `ipfs-update`

TODO

## Manually downgrading IPFS versions

Downgrading your IPFS version (for instance, from `0.4.0` to `0.3.8`) is not as complicated as upgrading. You can't use the same repository simultaneously for both versions. Here is how you switch

First, go to your repo for IPFS, check out the right branch, and re-install.

```sh
cd $GOPATH/src/github.com/ipfs/go-ipfs
git checkout master # (or the version you want)
go install ./cmd/ipfs
```

Then to backup your repo:

```sh
mv ~/.ipfs ~/.ipfs.bak
```

Finally, run:

```sh
ipfs init
ipfs daemon
```

And you should be all set.

0 comments on commit 4a1938a

Please sign in to comment.