THIS IS EXTREMELY IMPORTANT:
- ❌ Never push directly to the main branch
- ❌ Never merge your branch with main without team approval
- ❌ Never force push to main
- ❌ Never delete the main branch
ALWAYS:
- ✅ Create a new branch for your work
- ✅ Get code review from at least one team member
- ✅ Get explicit approval from the team before merging
- ✅ Use pull requests for all changes
You can clone this repository using any of these methods:
git clone https://github.com/DoQuantum/quantum-enhanced-dot-product-for-single-head-attention.gitgit clone git@github.com:DoQuantum/quantum-enhanced-dot-product-for-single-head-attention.gitgh repo clone DoQuantum/quantum-enhanced-dot-product-for-single-head-attention- Press
Ctrl+Shift+P(Windows/Linux) orCmd+Shift+P(Mac) - Type "git clone"
- Paste one of the URLs above
- Choose your destination folder
-
Create a new branch:
git branch -c your-name/feature-name
-
Stage and commit changes:
git add . # OR git add specific-file-name git commit -m "Your descriptive commit message"
-
Push your branch:
git push origin feature-your-name # OR git push origin head -
Open a Pull Request on GitHub:
- Click "Compare & pull request"
- Add description
- Request review
git checkout main
git pull origin main
# Then create your feature branch from the updated main- One branch per feature or fix
- Pull frequently to avoid merge conflicts
- Keep code well-commented and organized
- Use clear commit messages
- Track bugs and tasks with GitHub Issues