Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过以下方式创建了一个本地分支:
git checkout -b "something"
现在我想将我的 stash 应用到它上面。我该怎么做?
Stash 不在乎你在哪个分支,所以git stash pop和往常一样
git stash pop