Skip to content

Git branch meaning in version control

Question

What does the term "branch" mean in Git?

Answer

A branch in Git is a parallel version of a repository that allows you to work on different features or fixes independently without affecting the main codebase. Each branch can be merged back into the main branch once changes are complete.