Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Latest commit

 

History

History
42 lines (27 loc) · 997 Bytes

CONTRIBUTING.md

File metadata and controls

42 lines (27 loc) · 997 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 [email protected]:your-username/okd.io

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

$ git remote add upstream [email protected]:openshift-cs/okd.io
$ git fetch upstream
$ git rebase upstream/main

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