Files
git-practice-Arjun/notes.txt
2025-08-18 09:47:24 +05:30

11 lines
810 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1.Write down (in your own words) what problem Git solves.
It supports branching, we can store backup in temporay branch also
Since its 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 others 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.