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.
- Change into your cloned repo
cd rkvst-docs
- Checkout
main
Branch
git checkout main
- Make sure
main
is up to date with the latest changes
git pull
- 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>