0 votes
in Git by

Shed light on the concept of ‘head’ in Git also state as to the number of heads that can be created in a single repository?

1 Answer

0 votes
by

A ‘head’ in Git is nothing but simply a mention of a commit object in Git. For every repository that is there, there is already a head which is called as the “Master”. A Git repository can normally hold any amount of heads.

...