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 18, 2015
1 parent e9b1683 commit df54848
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions downgrading.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## Automatically using `ipfs-update`

If you want to do a downgrade (and not a clean install of an older version) you can revert your repo using the fs-migration tools:

```sh
$ ipfs-2-to-3 -revert -path=$IPFS_PATH
```

That should be it. You're all set.

## Manually downgrading IPFS versions

**You should not have to do this manually. Automatically downgrading is the preferred method.*

Manually 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. Note that this is actually a clean install, and that your daemon won't have the same data as before.

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 df54848

Please sign in to comment.