If you wish to contribute to this repository please follow the guidelines below.
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
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