시그마 삽질==six 시그마

git 히스토리 초기화 본문

프로그래밍/GIT

git 히스토리 초기화

Ethan Matthew Hunt 2020. 8. 10. 23:24
#git 제거
rm -rf .git

#git 초기화, 모든 파일 추가, 커밋
git init
git add .
git commit -m "first commit"

#깃 리모트 저장소 연결 , push
git remote add origin {remote url}
git push -u --force origin master

 

'프로그래밍 > GIT' 카테고리의 다른 글

git stash (임시저장)  (0) 2020.08.20
git repository 복사하기  (0) 2020.08.12
git branch/checkout  (0) 2020.08.10
현재 브랜치를 마스터로 만들기  (0) 2020.03.06
이미 tracking된 원격 저장소에 .gitignore 적용  (0) 2020.03.06
Comments