개발/Git & Github (1) 썸네일형 리스트형 [Git] Stash를 적용한 브랜치 만들기 $ git stash branch [branch name] 위와 같은 명령어가 있다. 대개는 작업할 때, stash를 한 이후에, stash apply 혹은 stash pop 을 하는 식으로 작업 할 텐데, 새로운 브랜치를 생성하고 해당 브랜치에서 작업을 해야한다면 아래와 같은 step을 거치게 된다. (thkwon) ➜ coding_kata git:(master) ✗ git stash Saved working directory and index state WIP on master: 44a211e 210104 (thkwon) ➜ coding_kata git:(master) git checkout -b test-branch Switched to a new branch 'test-branch' (thkwon.. 이전 1 다음