Git - Stash

iseon_u·2022년 4월 11일
0

Git

목록 보기
2/5
post-thumbnail

Stash


  • 하던 작업을 임시로 저장 해두고 싶을 때 사용하는 명령어 git stash

임시 저장 stash

git stash
git stash save
  • 아직 마무리하지 않은 작업을 스택에 잠시 저장하는 명령어
  • 명령어 이후 working directory 는 깨끗해진다.

목록

git stash list
  • 저장한 stash 목록을 확인 할 수 있다.

불러오기

git stash apply
git stash apply [stash 이름]
  • 스택에 저장해둔 작업을 다시 가져온다.
  • 가장 최근 작업이나 입력한 작업을 가져온다.

제거

git stash drop
git stash drop [stash 이름]
  • 스택에 남아 있는 stash 를 제거
profile
🧑🏻‍💻 Hello World!

0개의 댓글