### Cloning Forked Repository (Shell) Source: https://github.com/copyleftdev/vibe-rules-collection/blob/master/CONTRIBUTING.md Clones your forked repository from GitHub to your local machine, replacing with the actual URL. ```Shell git clone ``` -------------------------------- ### Pushing Branch to Fork (Shell) Source: https://github.com/copyleftdev/vibe-rules-collection/blob/master/CONTRIBUTING.md Pushes the local branch with your committed changes to your remote fork on GitHub. ```Shell git push origin feature/your-new-rule ``` -------------------------------- ### Committing Changes (Shell) Source: https://github.com/copyleftdev/vibe-rules-collection/blob/master/CONTRIBUTING.md Commits the staged changes with a descriptive message following conventional commit guidelines. ```Shell git commit -m "feat: Add rules for XYZ framework" ``` -------------------------------- ### Creating New Feature Branch (Shell) Source: https://github.com/copyleftdev/vibe-rules-collection/blob/master/CONTRIBUTING.md Creates and switches to a new branch for your changes, typically named to reflect the feature or bugfix. ```Shell git checkout -b feature/your-new-rule ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.