Team Collaboration Tutorial
Learn how to use Pull Requests for team design reviews.
Time: 10 minutes Difficulty: Intermediate
Why PRs for Design?
Pull Requests enable:
- Review before merge - Team reviews changes first
- Discussion - Comments on specific changes
- History - Record of who changed what and why
- Approval - Required sign-off before merging
Workflow Overview
Designer A → Feature branch → PR → Review → Merge → main
Step 1: Create Feature Branch
- Make sure you're on
main - Pull latest changes
- Create new branch:
feature/updated-colors
Step 2: Make Changes
- Switch to your feature branch
- Modify tokens as needed
- Push changes to the branch
Step 3: Create Pull Request
- In GitFig, click Push dropdown
- Select "Create Pull Request"
- Fill in:
- Title: "Update primary colors for accessibility"
- Description: Explain why and what changed
- Base:
main
Step 4: Review Process
On GitHub:
- Reviewers see the PR
- They can view changed files
- Leave comments or approve
- Request changes if needed
Step 5: Address Feedback
If changes requested:
- Make edits in Figma
- Push again to same branch
- PR updates automatically
Step 6: Merge
Once approved:
- Merge PR on GitHub
- Switch to
mainin GitFig - Pull to get merged changes
Tips for Good PRs
- Keep changes focused
- Write clear descriptions
- Reference related issues
- Include before/after context