728x90
git stash
git checkout main
git pull origin main
git checkout -b <branch name>
git stash pop
1. git stash: 수정사항을 잠시 저장해 둘 수 있다.
2. git checkout main: main branch로 돌아가기
3. git pull origin main: main branch pull
4. git checkout -b <branch name>: <branch name> branch를 만들고 checkout
5. git stash pop: 1번에서 git stash로 저장한 내용을 <branch name> branch에 반영한다.
728x90
'Temp' 카테고리의 다른 글
[Paper] A Flexible Solid 3D Model Reconstruction System for Mechanical CAD /CAM Systems (0) | 2023.01.06 |
---|---|
[Pillow] Generate Printed Text Image (0) | 2022.12.13 |
하위 버전의 CUDA Toolkit(e.g. CUDA-10.2) 설치가 안되는 이유 (0) | 2022.09.17 |
[Ubuntu 18.04] depends on libc6 (>= 2.34), libssl3 (>= 3.0.0) (0) | 2022.09.13 |
[Ubuntu] username 변경 (0) | 2022.09.13 |