git
- Version Control
What is Git and why is it widely used?
Git is a distributed version control system that tracks changes and enables collaboration among developers.
What are branches in Git and how are they used?
Branches are independent lines of development used to work on features or fixes without affecting the main codebase.
What is the purpose of the .gitignore file?
.gitignore specifies files and directories that Git should ignore and not track.
How does Git handle version history?
Git stores snapshots of the entire repository at each commit, allowing efficient history tracking and branching.
What are tags in Git and how are they used?
Tags mark specific points in history, often used for releases.
Version Control
What is Git and why is it widely used?
Git is a distributed version control system that tracks changes and enables collaboration among developers.
What are branches in Git and how are they used?
Branches are independent lines of development used to work on features or fixes without affecting the main codebase.
What is the purpose of the .gitignore file?
.gitignore specifies files and directories that Git should ignore and not track.
How does Git handle version history?
Git stores snapshots of the entire repository at each commit, allowing efficient history tracking and branching.
What are tags in Git and how are they used?
Tags mark specific points in history, often used for releases.