commit 기록에 암호를 작성했던 버전이 있는경우에 사용
 git checkout --orphan new_branch // 이름 상관 없음
 
 git add .
 
 git commit -m 'init'
 
 git branch -D main // 삭제하고 싶은 commit 기록이 남아있는 main branch 삭제
 
  git branch -m main // 새로운 main branch 지정'TIL' 카테고리의 다른 글
| QueryDSL (0) | 2024.10.17 | 
|---|---|
| Spring boot AWS S3 image, file upload (0) | 2024.10.15 | 
| 면접피드백 (1) | 2024.10.10 | 
| Fetch Join (0) | 2024.10.08 | 
| Entity LifeCycle (0) | 2024.10.07 |