자주 쓴 명령어 find .git/objects -type f # git이 관리하는 object 목록 git cat-file -t bce5 # object 타입 python3 unzlib.py .git/objects/../… # 압축만 풀고 살펴보기 git cat-file -p bce5 # object를 읽기 좋게 표시
Tag 살펴보기 git cat-file -p 2ed8 # jamsil 해시 구하기 echo -n "6a19…" > .git/refs/tags/jamsil git tag git show jamsil git show company 또는 git update-ref refs/tags/jamsil 6a19…
Tag 살펴보기 git cat-file -p 2ed8 # jamsil 해시 구하기 echo -n "6a19…" > .git/refs/tags/jamsil git tag git show jamsil git show company 또는 git update-ref refs/tags/jamsil 6a19…