[GIT] 코드 잠시 보관 git stash

유지나·2023년 5월 17일
0

GIT

목록 보기
10/13

git stash 사용이유

가장 최근 commit 이후로 작성된 코드를 잠시 보관하고 싶다면

git stash

  1. 수정된 내용 저장
  2. git stash or git stash save '수정 메모'
  • git stash는 최근 commit 내용이 메모가 됨

** stash 목록을 보고 싶다면 git stash list

stash 불러오기

가장 최근의 stash불러오기

git stash pop

stash 지우기

특정 인덱스에 해당하는 stash 지우기

git stash drop  번호

전체삭제

git stash clear
profile
지르나르

0개의 댓글