Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 450 Bytes

File metadata and controls

27 lines (19 loc) · 450 Bytes

Contributing to GitOps Practice

How to Contribute

  1. Fork this repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

Guidelines

  • Use clear commit messages
  • Test your changes
  • Update documentation if needed

Example Workflow

git checkout -b feature/your-feature
# make changes
git add .
git commit -m "feat: add your feature"
git push origin feature/your-feature

Thanks for contributing!