📜  在从分支结帐之前存储更改 - 无论代码示例

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

代码示例1
# Assuming you are on dev branch
$ git stash save "Code in dev branch to be included in feature branch"
$ git checkout feature
$ git stash pop