Joonas' Note

Joonas' Note

[git] 새로운 루트 브랜치 만들기 (이전 히스토리가 없는) 본문

개발

[git] 새로운 루트 브랜치 만들기 (이전 히스토리가 없는)

2022. 8. 6. 01:34 joonas

    --orphan 옵션으로 체크아웃하면, 이전 히스토리가 아예 없는 새로운 브랜치가 만들어진다.

    git checkout --orphan brand-new-branch

    위 커맨드를 실행하면 brand-new-branch라는 이름으로 새로운 브랜치가 생기는데, 이전 히스토리가 없다.

    이대로 커밋을 하나 쌓아보면 이렇게 된다.

    master랑 완전히 별개의 줄기를 가져간다.

    참고

     

    How to create a new (and empty!) "root" branch?

    I would like to define a new "root" branch in this git repository. By "root" branch I mean a branch that is entirely independent of all the other branches in the repository1. Unfortunately, even ...

    stackoverflow.com

     

    Comments