기타

git branch에 커밋, commit 리셋

_tera_ 2022. 7. 23. 01:48

초기화

git init
git remote add origin https://github.com/~.git

git pull origin 브런치이름

 

master 브랜치 main으로 변경

git branch -m master main
git fetch origin
git branch -u origin/main main

브랜치 추가

git branch -M [브런치이름]

 

브랜치 생성 및 이동

git branch [브런치이름]

 

브랜치 이동

git checkout  브런치이름

 

staging, 커밋

git add . (혹은 파일이름)
git commit -m "커밋메시지"
git push origin 브런치이름 (오류 뜨면 잘 보고 -f)

 

 

커밋 리셋 

git reset HEAD~1 ( 개수별로 가장 최신 커밋 reset)

 

git reflog로 상태 주소 보고 바꾸는 법

git reflog 

git reset --hard [상태 주소]