본문 바로가기

카테고리 없음

git 명령어 - stash

git stash 

// 변경 내용 임시저장

 

git stash list 

// 저장 리스트 보기

 

git stash apply

//최근 statsh 적용하기

 

git statsh apply stash@{0}

// 특정 statsh로 저장

 

git stash pop

//최근 stash 저장후 삭제

 

git stash save [특정이름]

//특정이름으로 저장