git stash命令用于將當前工作目錄中的所有未提交的更改(包括暫存和未暫存的更改)暫時保存起來,以便后續恢復使用。具體的使用方法如下:
git stash
git stash -u
git stash list
git stash pop
git stash pop stash@{n}
git stash apply
git stash apply stash@{n}
git stash drop
git stash drop stash@{n}
通過以上命令,可以靈活地使用git stash保存和恢復工作目錄中的更改,以便在需要時快速切換工作狀態。