git只直接从当前修改创建新分支
git stash
git checkout -b new_branch
git stash pop
git add -A
git commit -m "comments"
git push
黄世宇/Shiyu Huang's Personal Page:https://huangshiyu13.github.io/
git stash
git checkout -b new_branch
git stash pop
git add -A
git commit -m "comments"
git push