Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 줄바꿈 문자
- profile
- IntelliJ
- bash
- 단축키
- port
- Windows 10
- Windows
- VirtualBox
- JavaScript
- vscode
- plugin
- lsof
- Quartz
- netsh
- find
- import
- web.xml
- tomcat
- xargs
- Mac
- context
- Source
- grep
- 네트워크
- ssh
- resource
- GIT
- maVen
- Eclipse
Archives
- Today
- Total
develog
[git] stash 본문
작업중인 내용 임시 저장하기
git-stash - Stash the changes in a dirty working directory away
# stash 저장
git stash push -u -m 'message'
# stash 리스트 보기
git stash list
git stash list --date=iso
# 0번 인덱스 내용 보기
git stash show 0
git stash show 0 -p
# 0번 인덱스 내용 적용
git stash apply 0
# 0번 인덱스 삭제
git stash drop 0
# stash 비우기
git stash clear
'Dev > git' 카테고리의 다른 글
[git] client tool (0) | 2021.06.30 |
---|---|
[git] 참고 (0) | 2021.06.30 |
[git] log (0) | 2021.06.30 |
[git] fatal: refusing to merge unrelated histories (0) | 2021.05.19 |
[windows] docker 로 gitlab 설치 (0) | 2021.05.13 |
Comments