Creating Your Branch

As the main branch of these docs is protected you will need to create a seperate branch and submit a PR to make any changes.

  1. Change into your cloned repo
cd rkvst-docs
  1. Checkout main Branch
git checkout main
  1. Make sure main is up to date with the latest changes
git pull
  1. Create a new branch and check it out automatically
git branch -M <your-branch-name>

If you are resolving a specific GitHub issue you should reference this in your branch name with the following syntax:

<issue number>-<your-branch-name>

Edit this page on GitHub