0 votes
in GitHub by
What Is A Branch On Github?

1 Answer

0 votes
by

 Branch in Git means a lightweight movable pointer to one of these commits. The default branch name in Git is the master. As we initially make commits, we are given a master branch that points to the last commit being made. Every time we commit, it moves forward automatically.

...