내일배움캠프[4기_Reac트랙]/모두의 git & GitHub
명령어_작업 임시 저장하기(stash)
ecoEarth
2023. 3. 9. 00:06
git stash
git stash -m "작성할스태사메시지"
git stash list
- 가장 최근에 추가한 stash일수록 가장 낮은번호가 된다. 즉 0번이 된다.
- WIP: Work in progress
git stash apply stash@{적용시킬stash번호}
git stash drop stash@{지워버릴stash번호}