-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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`. |