Skip to content

coopernetes/git-proxy

Β 
Β 

Repository files navigation


Logo

Deploy custom push protections and policies
on top of Git

npm install @finos/git-proxy

Docs Β· Report a bug Β· Suggest a new feature


FINOS - Incubating NPM Build Documentation
License Contributors Stars Forks


About Git Proxy

Git Proxy Demonstration

Git Proxy deploys custom push protections and policies on top of Git. It is a highly configurable framework allowing developers and organizations to enforce push protections relevant to their developer workflow, security posture and risk appetite.

Git Proxy is built with a developer-first mindset. By presenting simple-to-follow remediation instructions in the CLI/Terminal, it minimises the friction of use and adoption, and keeps developers focused on what matters; committing and pushing code.

Installation

To install Git Proxy, you must first install Node.js. Then, use the npm package manager:

npm install -g @finos/git-proxy

To install a specific version of Git Proxy, append the version to the end of the install command:

npm install -g @finos/git-proxy@1.1.0

Run Git Proxy ⚑

Once you have followed the installation steps, run Git Proxy with:

git-proxy

Alternatively, if you prefer the magic of npx over npm, you can run Git Proxy with:

npx --package=@finos/git-proxy@1.1.0 -- git-proxy # No installation required...

Quickstart πŸš€

1. Run Git Proxy with simple config

Create a proxy.config.json in a workspace with the following:

{
    "authorisedList": [
    {
      "project": "<YOUR-GITHUB-USERNAME>",
      "name": "git-proxy",
      "url": "https://github.com/<YOUR-GITHUB-USERNAME>/git-proxy.git"
    }
  ],
}

Then run Git Proxy and load your proxy.config.json configuration file from your workspace:

npx --package=@finos/git-proxy@1.1.0 -- git-proxy --config ./proxy.config.json

2. Pick a repository

Git Proxy sits between the local clone of your repository and its remote upstream. Essentially, instead of communicating directly with the live version of your repository, you configure your local clone to speak with Git Proxy first.

For demonstration purposes, we recommend πŸ‘‰ forking Git Proxy and cloning the repository to your PC:

git clone https://github.com/<YOUR-GITHUB-USERNAME>/git-proxy.git

Pretty meta, huh? Testing Git Proxy on Git Proxy...

3. Introduce Git Proxy to your clone

Navigate into your test-bed repository on your PC:

cd ./git-proxy

By default the clone of your repository will communicate with GitHub. To change this, so that your local copy of the repository speaks with Git Proxy, run:

git remote set-url origin http://localhost:8000/<YOUR-GITHUB-USERNAME>/git-proxy.git

4. Make some changes to the codebase

Open up the README.md and turn this frown upside-down: ☹️

Once you've cheered up our friend above, run:

git add README.md
git commit -m "fix: turn frown upside-down"

5. Push your changes via Git Proxy

git push

Git Proxy will prompt the entry of your git credentials. These credentials are your GitHub username and a Personal Access Token. For the ability to push and pull code through Git Proxy, you will only require the public_repo scope.

Git Proxy will reprompt you for credentials each time you push. To automatically re-use your credentials, you can run:

git config --global credential.helper osxkeychain # MacOS

git config --global credential.helper manager # Windows

git config --global credential.helper store # Linux

6. Success

Immediately after a push, you should receive the following message in your terminal:

remote:
remote: Git Proxy has received your push:
remote: 
remote: http://localhost:8080/requests/000000__b12557    
remote:

Configuring Git Proxy βš™οΈ

By default, Git Proxy ships with an out-of-the-box configuration.

To customise your Git Proxy configuration, create a proxy.config.json in your directory.

To specify a different file name for your Git Proxy configuration, use:

git-proxy --config ./config.json

Or with npx:

npx -- @finos/git-proxy --config ./config.json

Know Your Configuration (KYC) βœ…

To check that your Git Proxy configuration is valid, run:

git-proxy --validate

To validate your configuration at a custom file location, run:

git-proxy --validate --config ./config.json

Contributing

Your contributions are at the core of making this a true open source project. Any contributions you make are greatly appreciated.


fork this repository

Fork the repository

Click on the fork button at the top of the page. This will create a copy of this repository under your GitHub account.



Clone the repository

copy URL to clipboard

Clone the repository to your machine. Go to the repository via your GitHub account and click on the Code button.

Run the following command in your CLI/Terminal:

git clone https://github.com/YOUR_GITHUB_USRERNAME/git-proxy.git


Branch, code, commit and push


Branch

You can start coding on the default branch on your fork of the project, commonly master or main. If you want to create a branch to clearly identify your work, run:

git checkout -b feature/name-of-the-feature-you-are-creating

Code

This part is up to you. Be creative and write some magical code! πŸ§™πŸͺ„


Commit

Once you have finished making all of your improvements and changes, run the following:

git commit -m "YOUR COMMIT MESSAGE"

Push

Now that you've created a commit with your changes, it's time to push to GitHub:

git push

Open a pull request

With your changes applied to your fork of the project, it's time to open a pull request from your repository...


Security

If you identify a security vulnerability in the codebase, please follow the steps in SECURITY.md. This includes logic-based vulnerabilities and sensitive information or secrets found in code.

Code of Conduct

We are committed to making open source an enjoyable and respectful experience for our community. See CODE_OF_CONDUCT for more information.

License

This project is distributed under the Apache-2.0 license. See LICENSE for more information.

Contact

If you have a query or require support with this project, raise an issue. Otherwise, reach out to help@finos.org.

About

An info-security/compliance-friendly way for highly regulated industries to be more accepting of open source

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 90.7%
  • CSS 5.5%
  • MDX 2.8%
  • Other 1.0%