Git from the inside out
引用文章来源 Git from the inside out - video 转载已注明出处。文章来源于网络,如有侵权,请联系删除。 概括简要 build-your-own-x Gitlet Git from the inside out - video Git from the inside out tree command tree -a mkdir cd printf 'a' > data/letter.txt git init tree .git/objects git add data/letter.txt blob file -> .git/objects/2e/65 git cat-file -p 2e65 -> a cat .git/index git ls-files -s git commit -m 'a1' cat .git/HEAD cat .git/refs/heads/main git checkout 1f48 -> detached HEAD -> check out commit...