From 089365a9a3fa3e848983e6cdd650b05c4cc72d4b Mon Sep 17 00:00:00 2001 From: Arjun g Date: Mon, 18 Aug 2025 09:47:24 +0530 Subject: [PATCH] Add first notes file --- notes.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 notes.txt diff --git a/notes.txt b/notes.txt new file mode 100644 index 0000000..471d525 --- /dev/null +++ b/notes.txt @@ -0,0 +1,11 @@ +1.Write down (in your own words) what problem Git solves. + It supports branching, we can store backup in temporay branch also + Since it’s distributed, we can pull code from anywhere + we can review the history of commits, retriew the file if lost our files in local or any where like hositng server + +2.Find one real-life example where multiple people edit the same file (school project, code, Google Docs). +With Google Docs, everyone can edit the same document at once, see each other’s changes, and restore earlier versions if something goes wrong. + +3.Answer: Why is version control better than emailing files back and forth? +If two people edit the same part, the system helps merge or highlight the conflict instead of losing work +we can see who changed what and when, and roll back if something breaks. \ No newline at end of file