Skip to content
Merged
Changes from all commits
Commits
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
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,18 @@ export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

## Download & Build

1. Downloading the latest version:
1. Downloading:

```bash
go install github.com/apache/cloudberry-backup@latest
# Download the stable release version
go install github.com/apache/cloudberry-backup@2.1.0-incubating

# Or download the latest development version from main branch
go install github.com/apache/cloudberry-backup@main
```

**Note:** Please use the specific version `@2.1.0-incubating` or `@main` instead of `@latest`. The `@latest` tag will install an older version due to Go modules version resolution rules.

This will place the code in `$GOPATH/pkg/mod/github.com/apache/cloudberry-backup`.

2. Building and installing binaries
Expand Down
Loading