top of page
INTERMEDIATE LEVEL
Q11: What is the difference between a branch and a tag in Git?
In Git, a branch is a lightweight movable pointer to a specific commit. It allows for parallel development and isolates changes from each other.
Developers can create new branches to work on new features or bug fixes.
On the other hand, a tag is a reference to a specific commit that is used to mark a significant point in the project's history, such as a release or a stable version.
bottom of page