Thank you for your interest in contributing to Decent Client!
-
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.
-
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 islauncher
, unless you renamed it.
-
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>
- Navigate to the project directory:
-
Make Your Changes:
- Make the changes you want to contribute.
-
Commit Your Changes:
- Commit your changes with a clear and descriptive commit message:
git commit -m "<your-commit-message>"
- Commit your changes with a clear and descriptive commit message:
-
Push Your Changes:
- Push your changes to your forked repository:
git push origin <your-branch-name>
- Push your changes to your forked repository:
-
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."
-
Code Review:
- The maintainers will review your pull request.
- You may be asked to make further changes or improvements.