Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.62 KB

CONTRIBUTING.md

File metadata and controls

56 lines (41 loc) · 1.62 KB

Contributing to Decent Client - Launcher

Thank you for your interest in contributing to Decent Client!

How to Contribute

  1. Fork the Repository:

    • Click the "Fork" button at the top right of this page. This creates a copy of the repository under your GitHub account.
  2. Clone the Repository:

    • Open your terminal.
    • Run the following command to clone your forked repository:
      git clone https://github.com/<your-username>/<repository-name>.git
    • Make sure to replace <your-username> with your actual GitHub username and <repository-name> with the name of the repository you forked. The name of the repository in this case is launcher, unless you renamed it.
  3. Create a New Branch:

    • Navigate to the project directory:
      cd <repository-name>
    • Create a new branch for your changes:
      git checkout -b <your-branch-name>
  4. Make Your Changes:

    • Make the changes you want to contribute.
  5. Commit Your Changes:

    • Commit your changes with a clear and descriptive commit message:
      git commit -m "<your-commit-message>"
  6. Push Your Changes:

    • Push your changes to your forked repository:
      git push origin <your-branch-name>
  7. Open a Pull Request:

    • Go to your forked repository on GitHub.
    • Click the "Pull Request" button.
    • Provide a title and description for your pull request.
    • Click "Create Pull Request."
  8. Code Review:

    • The maintainers will review your pull request.
    • You may be asked to make further changes or improvements.