📌  相关文章
📜  git 将您的更改带到一个新分支 - Shell-Bash 代码示例

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

代码示例1
git checkout -b 
// This will leave your current branch as it is, create and checkout a new branch and keep all your changes. You can then stage changes in files to commit with:

git add 
//and commit to your new branch with:

git commit -m ""