stashing (1) 썸네일형 리스트형 git: stashing과 cleaning stashing 하나의 브랜치에서 작업하던 내용을 commit하지 않고 임시저장해두어야 할 때사용한다 이렇게 하면 해당 브랜치의 working directory를 clean한 상태로 정리할 수 있다. $ git stashing push # 작업 중인 내용을 임시 저장 $ git stashing list # 임시 저장 중인 내용 보기 $ git stashing apply # 임시 저장했던 내용을 다시 복원한다. $ git stashing apply --index # 임시 저장했던 내용을 staged 상태까지 복원 $ git stashing drop # 해당 stashing 삭제 $ git stashing pop # 임시 저장했던 내용을 복원하고 stash 삭제 cleaning working director.. 이전 1 다음