Skip to content

help us update the wiki

github-actions[bot] edited this page Jan 6, 2025 · 1 revision

Table of Contents

Introduction

Thank you for your interest in improving the wiki! This guide will help you through the process of contributing, whether you’re adding new pages, fixing errors, or enhancing existing content.

Prerequisites

Before contributing, make sure you have:

  1. A GitHub account.
  2. Basic knowledge of Markdown.

Steps to Contribute

1. Create a Fork on GitHub

To contribute, start by creating a fork of the repository:

  1. Go to the GitHub page of the repository.
  2. Click on the Fork button in the top-right corner of the page.
  3. Once the fork is created, it will appear under your GitHub account.

2. Clone Your Fork

Now, clone your fork to your local machine for editing:

git clone https://github.com/[your-username]/[repository-name].git
cd [repository-name]

3. Make Your Changes

Make edits, add new pages, or update content as needed. Then commit and push your changes to your fork:

git add .
git commit -m "Describe your changes here"
git push origin master

4. Submit a Pull Request

Once your changes are ready:

  1. Go to the original repository on GitHub.
  2. Click the Pull Requests tab, then New Pull Request.
  3. Compare changes between your fork and the original repository.
  4. Add a clear description of your changes and submit the pull request.
Clone this wiki locally