boostcamp-challenge

[7/31] GIT

blopz 2024. 7. 31. 11:29

object - has unique id

  • Blob
    • file content을 대표함. 파일이름 이런거 하나도 없고 순수 데이터
  • Tree
    • folder를 대표함. blobs와 other trees을 children으로 가짐.
    • 모드, 객체 유형, SHA1 이름, 이름이 있는 항목 목록을 포함하고 있으며, 이름순으로 정렬
  • Commit
    • Wrapper around a tree.
    • commit message와 tree에 대한 pointer.
    • parent commit의 parent는 전 commit (LinkedList - commit History)
  • Branch
    • pointer to a commit, default name is branch "master"