git常见问题总结

git对象彼此关系

commit、tree、blob

tree --> 文件夹
blob --> 文件

一个commit对应一个tree,tree嵌套多层

commit记录此时git仓库的快照,

➜  git_repo git:(master) git cat-file -p e1ba46e
tree c7ba4c4219xxxxxx
parent 67cb0637xxxxx
parent ac22ba90cxxxxx
author who <who@gmail.com> 159xxxxx +0800
committer who <who@gamil.com> 159xxxx +0800

分离头指针

分离头指针状态就是HEAD不再指向分支,而是直接指向某个commit。
变更未基于某个branch或者某个tag,当进行分支切换时, 在分离头指针上产生的变更很可能被git丢弃。


Willem97
36 声望1 粉丝

不断进步,充实自己