📜  git stash apply specific index - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:31.906000             🧑  作者: Mango

代码示例1
// Get a list of stashes
git stash list

// Apply specific stash index
git stash apply stash@{n}

// Since version 2.11 you can do:
git stash apply n