📌  相关文章
📜  git move change from master to new branch - Shell-Bash 代码示例

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

代码示例1
git stash                        //you can stash the changes in the master branch .
git checkout -b newbranchname    //then checkout the branch
git stash pop                    //and pop the changes here