How are branches stored and recorded in GIT?
天蓬老师
天蓬老师 2017-05-24 11:31:43
0
1
770

There are four kinds of objects in GIT, blob, tree, commit, and tag, which are used to store data. So for branches, how does GIT store which branches are in a project and the status of these branches?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(1)
Ty80

A branch is not an object, it is just a pointer to commit. The storage format is text file

For example, the master branch corresponds to .git/refs/heads/master This file contains the sha1 of a commit.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!