git commit 안하고 checkout
사용하던 브랜치를 hotfix-0.0.0 변경 할 브랜치를 develop 라고 예를 들면
임시 저장 후 브랜치 변경(checkout)
git stash
git stash
로 임시 저장 후
git checkout develop
git checkout develop
로 브랜치 변경
브래치 변경 후 다시 돌아와서 임시저장 했던 내용 불러오기
git checkout hotfix-0.0.0
git checkout hotfix-0.0.0
git stash pop
git stash pop