Thank you for your interest in contributing!
- Fork the repository
- Click the “Fork” button at the top-right corner of the repository to create your own copy.
- Clone your fork locally
git clone https://github.com/Drive-for-Java/mycmd.github.io.git
cd mycmd.github.io- Create a new branch
- Always work on a new branch, not main:
git branch my_feature
git checkout my_feature- Make your changes
-
Fix bugs
-
Add new features
-
Improve documentation
-
Optimize code
- Test your changes
- Make sure everything works as expected before committing.
- Commit your changes
- Write clear, descriptive commit messages:
git add .
git commit -m "Add feature XYZ"- Push your branch
git push origin my_feature- Open a Pull Request (PR)
- Go to the original repository and create a PR from your branch.