Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.09 KB

CONTRIBUTING.md

File metadata and controls

44 lines (29 loc) · 1.09 KB

Contributing

If you wish to contribute to this repository please follow the guidelines below.

Forking this repository

The first thing you need to do is to fork this repository into your own github account.

Then, clone it into your local machine:

$ git clone git@github.com:your-username/projectquay.io

And add the upstream remote to follow this repository's changes:

$ git remote add upstream git@github.com:openshift-cs/projectquay.io
-OR-
$ git remote add upstream https://github.com/openshift-cs/projectquay.io.git
$ git fetch upstream
$ git rebase upstream/master

Submiting a Pull Request

After you've done your changes and tested them, you're ready to submit a Pull Request.

First, create a local branch on your local machine:

$ git checkout -b my-feature-branch

Then, add, commit, and push your changes:

$ git add .
$ git commit
$ git push origin my-feature-branch

Finally, submit a submit a Pull Request