Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 977 Bytes

File metadata and controls

58 lines (36 loc) · 977 Bytes

Contributing to Drive-For-Java

Thank you for your interest in contributing!


How to Contribute

  1. Fork the repository
  • Click the “Fork” button at the top-right corner of the repository to create your own copy.
  1. Clone your fork locally
   git clone https://github.com/Drive-for-Java/mycmd.github.io.git
   cd mycmd.github.io
  1. Create a new branch
  • Always work on a new branch, not main:
git branch my_feature
git checkout my_feature
  1. Make your changes
  • Fix bugs

  • Add new features

  • Improve documentation

  • Optimize code

  1. Test your changes
  • Make sure everything works as expected before committing.
  1. Commit your changes
  • Write clear, descriptive commit messages:
git add .
git commit -m "Add feature XYZ"
  1. Push your branch
git push origin my_feature
  1. Open a Pull Request (PR)
  • Go to the original repository and create a PR from your branch.