From 9aed71ff0303ad67b336a01554641e71e8850e2e Mon Sep 17 00:00:00 2001 From: "ashish.livingston" Date: Sat, 30 Aug 2025 07:39:43 +0000 Subject: [PATCH] Update GIT_ASSIGNMENT.md --- GIT_ASSIGNMENT.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/GIT_ASSIGNMENT.md b/GIT_ASSIGNMENT.md index fd5f54d..c956cc5 100644 --- a/GIT_ASSIGNMENT.md +++ b/GIT_ASSIGNMENT.md @@ -7,21 +7,8 @@ Git lets us:Save snapshots (commits) of our work.Revert to older versions when m 2. Real-life example of multiple people editing the same file Imagine a school group project report where 3 friends are writing in MS Word.Person A adds introduction. Person B adds research. Person C fixes grammar. - -If they all edit separately and email files around, they’ll end up with many different versions: report_final.docx, report_final2.docx, report_revised_final.docx 😅. - -This is messy and confusing. - -With Git (or Google Docs), they can all work on the same file, track who wrote what, and merge changes properly. +If they all edit separately and email files around, they’ll end up with many different versions: report_final.docx, report_final2.docx, report_revised_final.doc.With Git (or Google Docs), they can all work on the same file, track who wrote what, and merge changes properly. 3. Why is version control better than emailing files back and forth? -No duplicate files → Everything is in one central repository. - -Clear history → You can see every change with author and timestamp. - -Easy to undo → If someone makes a mistake, you can roll back to an earlier version. - -Parallel work → Multiple people can edit different parts without overwriting each other. - -Faster collaboration → No more “Which version is the latest?” confusion. \ No newline at end of file +No duplicate files → Everything is in one central repository.Clear history → You can see every change with author and timestamp.Easy to undo → If someone makes a mistake, you can roll back to an earlier version.Parallel work → Multiple people can edit different parts without overwriting each other.Faster collaboration → No more “Which version is the latest?” confusion. \ No newline at end of file