honey_pot

git branch에 커밋, commit 리셋 본문

기타

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 [상태 주소] 

 

'기타' 카테고리의 다른 글

mac 단축키  (0) 2022.08.04
M1 가상환경 구축 및 패키지 설치  (0) 2022.08.01
맥북m1 mysql workbench 설치  (0) 2022.01.13
[ERMaster] 이클립스에 설치하기  (0) 2021.11.22
[Python] 파이참 자동 Run with console 해제  (0) 2021.06.19
Comments