Notice
Recent Posts
- Today
- Total
반응형
빵 입니다.
Stash (하던 작업 임시로 저장하기) 본문
📌 현재 작업 중인 파일들 stash 생성하기
git stash
git stash save
📌 stash 리스트 보기
git stash list
```
stash@{0}: abc
stash@{1}: xyz
stash@{1}: pqr
```
📌 모든 stash 삭제
git stash clear
📌 특정 stash 삭제
git stash drop stash@{index}
```
git stash drop stash@{0}
```
📌 stash@{7}보다 오래된 모든 stash 삭제
while git stash drop 'stash@{8}'; do true; done
📌 가장 최근의 stash 적용
git stash apply
📌 특정 stash 적용
git stash apply stash@{index}
```
git stash apply stash@{0}
```
반응형
'Git' 카테고리의 다른 글
Git 작업 흐름 (0) | 2022.07.22 |
---|---|
Git 기본 명령어 (0) | 2022.07.22 |
Comments