5MinStudy
Loading...
Loading...
Practice Git commands interactively with real-time visual feedback. Learn branching, merging, and essential Git workflows in a safe environment!
Click a scenario to see it in action, or type commands below
No commits yet. Make your first commit!
Legend:
• Visual Feedback: Watch the commit history update in real-time
• Safe Learning: Everything is simulated - experiment freely!
• Quick Scenarios: Click buttons above to see common workflows
• Full Git Commands: Try branch, merge, checkout, and more
• Color Coded: Green for staged, red for modified files
• Type "git help" to see all available commands
git status - Check status
git add . - Stage all changes
git commit -m "msg" - Commit changes
git log - View history
git branch - List branches
git branch name - Create branch
git checkout name - Switch branch
git merge name - Merge branch