Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

Latest commit

 

History

History
42 lines (27 loc) · 1018 Bytes

CONTRIBUTING.md

File metadata and controls

42 lines (27 loc) · 1018 Bytes

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/openshift.org

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

$ git remote add upstream git@github.com:openshift/openshift.org
$ 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