| name | modern-git |
| description | Modern Git command best practices for AI agents. Use modern, purposeful commands introduced in Git 2.23+ instead of legacy multi-purpose commands. Teaches when to use `git switch` (branch operations), `git restore` (file operations), and other safer alternatives to improve clarity and reduce errors. |
Modern Git Commands
Purpose: This skill teaches AI agents to use modern, intuitive Git commands instead of legacy multi-purpose commands like git checkout. Modern commands are clearer, safer, and make code intent more obvious.
Core Principles
- Use
git switch for branch operations - NOT git checkout
- Use
git restore for file operations - NOT git checkout --
- Use
git push --force-with-lease - NOT git push --force
- Be explicit about intent - Clear commands prevent mistakes
Quick Reference
Branch Operations → Use git switch
git switch main
git switch -c feature-branch
git switch -
git checkout main
git checkout -b feature-branch
git checkout -
Why: git switch has a single, clear purpose: branch operations. It provides better error messages and is harder to misuse.
File Operations → Use git restore
git restore src/app.js
git restore --staged src/app.js
git restore --source=abc123 src/app.js
git restore --staged --worktree src/app.js
git checkout -- src/app.js
git reset HEAD src/app.js
git checkout abc123 -- src/app.js
Why: git restore is dedicated to file operations with explicit flags (--staged, --worktree, --source) that make intent crystal clear.
Force Push → Use --force-with-lease
git push --force-with-lease origin feature-branch
git push --force origin feature-branch
Why: --force-with-lease checks if the remote branch has been updated by others before force pushing. Prevents accidental overwrites.
Decision Trees
"I need to switch branches"
Do you need to create the branch first?
├─ YES → git switch -c <new-branch>
└─ NO → git switch <existing-branch>
Special cases:
├─ Previous branch → git switch -
└─ With uncommitted changes → git stash && git switch <branch> && git stash pop
OR git switch -c <new-branch> (bring changes with you)
"I need to fix a file"
What do you want to fix?
├─ Discard working directory changes
│ └─> git restore <file>
│
├─ Unstage file (keep changes in working directory)
│ └─> git restore --staged <file>
│
├─ Discard AND unstage
│ └─> git restore --staged --worktree <file>
│
└─ Restore from specific commit
└─> git restore --source=<commit> <file>
"I need to force push"
Why do you need to force push?
├─ After rebase/amend (common, safe scenario)
│ └─> git push --force-with-lease origin <branch>
│
├─ To overwrite remote (rare, potentially dangerous)
│ ├─ Are you SURE no one else has pushed?
│ │ ├─ YES → git push --force-with-lease origin <branch>
│ │ └─ NO → git fetch && git rebase origin/<branch>
│ │
│ └─> Tip: ALWAYS prefer --force-with-lease over --force
Common Workflows
Workflow 1: Start New Feature
git switch main
git pull
git switch -c feature/new-feature
git checkout main
git pull
git checkout -b feature/new-feature
Workflow 2: Discard File Changes
git restore src/broken.js
git restore .
git checkout -- src/broken.js
git checkout -- .
Workflow 3: Unstage and Discard
git restore --staged --worktree src/app.js
git restore --staged src/app.js
git restore src/app.js
git reset HEAD src/app.js
git checkout -- src/app.js
Workflow 4: Restore from Specific Commit
git restore --source=abc123 src/legacy.js
git restore --source=HEAD~3 src/config.js
git checkout abc123 -- src/legacy.js
git checkout HEAD~3 -- src/config.js
Workflow 5: Safe Rebase and Push
git switch feature-branch
git rebase main
git push --force-with-lease origin feature-branch
git checkout feature-branch
git rebase main
git push --force origin feature-branch
Safety Guidelines
1. Always Use Modern Commands for Common Operations
| Operation | Use This | NOT This |
|---|
| Switch branch | git switch <branch> | git checkout <branch> |
| Create branch | git switch -c <branch> | git checkout -b <branch> |
| Discard changes | git restore <file> | git checkout -- <file> |
| Unstage | git restore --staged <file> | git reset HEAD <file> |
| Force push | git push --force-with-lease | git push --force |
2. Be Explicit About Intent
git restore --staged src/app.js
git restore --source=HEAD~1 src/app.js
git checkout -- src/app.js
git checkout HEAD~1 -- src/app.js
3. Protect Against Accidents
git push --force-with-lease origin feature-branch
git push --force origin feature-branch
git switch main
git switch --discard-changes main
4. Use Stash for Experimentation
git stash push -m "Before risky operation"
git restore --source=old-commit .
git stash pop
git restore --source=old-commit .
When Legacy Commands Are Still OK
Some scenarios don't have modern equivalents:
git checkout abc123
git switch --detach abc123
git checkout -b local origin/remote
Rule of thumb: If there's a modern equivalent for your use case, use it. Legacy commands are OK only when no modern alternative exists.
Common Mistakes to Avoid
Mistake 1: Using git checkout for Everything
git checkout main
git checkout -b feature
git checkout -- src/app.js
git switch main
git switch -c feature
git restore src/app.js
Mistake 2: Forgetting --force-with-lease
git rebase main
git push --force origin feature-branch
git rebase main
git push --force-with-lease origin feature-branch
Mistake 3: Confusing --staged and --worktree
git restore --staged src/app.js
git restore --staged --worktree src/app.js
git restore --staged src/app.js
git restore src/app.js
Mistake 4: Not Checking Before Discarding
git restore .
git status
git diff
git restore .
Integration with AI Code Generation
When generating Git commands in code or documentation:
1. Default to Modern Commands
# ✓ GOOD: Use modern commands in examples
To discard your changes, run:
\`\`\`bash
git restore src/app.js
\`\`\`
# ✗ AVOID: Don't teach legacy commands
To discard your changes, run:
\`\`\`bash
git checkout -- src/app.js
\`\`\`
2. Explain Why Modern Commands Are Better
# ✓ GOOD: Educate users
Use `git switch` instead of `git checkout` for branch operations.
This makes your intent clearer and provides better error messages.
# ✗ INSUFFICIENT: Just showing command without context
Use `git switch main` to switch branches.
3. Use Consistent Command Patterns
git switch develop
git pull
git switch -c feature/new-feature
git restore --staged accidental-file.js
git checkout develop
git pull
git switch -c feature/new-feature
git checkout -- accidental-file.js
Reference Documentation
For detailed comparisons and advanced scenarios:
Summary Table
| Use Case | Command | Key Flags | Notes |
|---|
| Switch to branch | git switch <branch> | -c (create), - (previous) | Replaces git checkout <branch> |
| Discard file changes | git restore <file> | --worktree (default) | Replaces git checkout -- <file> |
| Unstage file | git restore --staged <file> | --staged | Replaces git reset HEAD <file> |
| Restore from commit | git restore --source=<commit> <file> | --source | Replaces git checkout <commit> -- <file> |
| Force push safely | git push --force-with-lease | --force-with-lease | Replaces git push --force |
Key Takeaway
Always prefer modern commands for clarity, safety, and better error messages. Your future self (and code reviewers) will thank you.
When in doubt:
- Branch operations →
git switch
- File operations →
git restore
- Force push →
--force-with-lease