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
14 changes: 14 additions & 0 deletions website/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,17 @@ To install a specific version of the GitProxy CLI, append the version to the end
```bash
npm install -g @finos/[email protected]
```

### Install a local checkout

To test a personal fork, or the latest version of the main branch:

```bash
git clone [email protected]:finos/git-proxy.git
cd git-proxy
npm pack
npm i -g finos-git-proxy-<version>.tar.gz
git-proxy --version
```

To make sure that the `git-proxy` command is using your checked out version, update the `version` in `package.json` before running `npm pack`, then verify that the same version is returned when running `git-proxy --version`.
Loading