Welcome to the Git Workshop!
This repository contains exercises to help you learn Git.
- Git basics (commits, branches, merging)
- Stashing and recovering work
- Cherry-picking commits
- Interactive rebase
- Git bisect for debugging
- Working with remote repositories
- GitHub Actions for CI/CD
- Advanced Git commands
- Git installed
- GitHub account
- Basic command line knowledge
Something seems wrong... This README doesn't have the detailed instructions!
Hint: The full workshop instructions were here in a previous commit. Can you use Git to find and restore them?
Try using commands like:
git logto see the commit historygit show <commit-hash>to view a specific commit's changesgit checkout <commit-hash> -- README.mdto restore the file from that commitgit revert HEADto undo the last commitgit reset --hard HEAD~1to go back to the previous commit
Your First Exercise: Recover the full README!
Good luck!