What is git and why do we use it?
Answer / Abhay Murari
Git is a distributed version control system that allows multiple people to work on the same project simultaneously, while keeping track of changes and managing conflicts. We use Git for version control because it simplifies collaboration, enables branching and merging, provides a history of all changes, and supports rollbacks if necessary.
| Is This Answer Correct ? | 0 Yes | 0 No |
Mention some of the best graphical GIT client for LINUX?
What is a “conflict” in git and how is it resolved?
What is the command you can use to write a commit message?
What is GIT stash drop?
What is the syntax for “Rebasing” in Git?
How can you use git bisect to determine the source of a (regression) bug?
What is git fork? How to create tag?
How do you configure a git repository to run code sanity checking tools right before making commits, and preventing them if the test fails?
How will you know in GIT if a branch has been already merged into master?
What is git bisect?
What work is restored when the deleted branch is recovered?
What is a distributed vcs?