프로그램 사용/Version Control
git stash
구차니
2021. 5. 9. 21:45
이번에 한번 날릴 각오로(!) 써봐야지 -_ㅠ
git stash [push]
git stash list
git stash apply | pop
SYNOPSIS git stash list [<options>] git stash show [<stash>] git stash drop [-q|--quiet] [<stash>] git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>] git stash branch <branchname> [<stash>] git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet] [-u|--include-untracked] [-a|--all] [-m|--message <message>] [--] [<pathspec>...]] git stash clear git stash create [<message>] git stash store [-m|--message <message>] [-q|--quiet] <commit> |
[링크 : https://gmlwjd9405.github.io/2018/05/18/git-stash.html]