Loading…
Since we don't have Git in this terminal, let's simulate version control manually! This will help you understand exactly what Git does behind the scenes.
Create a "version history" by saving snapshots of a file:
mkdir versionsecho "v1: Initial draft" > versions/story.txtcp versions/story.txt versions/story_v1.txtecho "v2: Added ending" > versions/story.txtcp versions/story.txt versions/story_v2.txtls versions/This is exactly the problem Git solves — but Git does it automatically and much more efficiently!
Loading terminal engine...
This may take a moment on first load