标签:bsp strong 操作 git push 查看 let checkout 远程 str
创建分支
git branch -a 查看
git checkout -b test创建
git push origin test -u 推送到远程
删除分支gitgit
git branch -d test 删除本地
git push origin --delete test 删除远程
合并分支
git merge test 合并到master
标签:bsp strong 操作 git push 查看 let checkout 远程 str
原文地址:https://www.cnblogs.com/Linky008/p/12916164.html