Git Workflows
# Feature branch workflow
git checkout -b feature/new-feature
# Make changes
git add .
git commit -m "Add new feature"
git push origin feature/new-feature
# Create pull request
# After review and merge
git checkout main
git pull origin main
git branch -d feature/new-featureKeep your own version of these notes — editable, searchable, and organised by your stack.
Start free