git删除分支与合并分支
更新:HHH   时间:2023-1-7


分支删除

git branch
git branch -d test1
git checkout test2
git branch -d test1
git branch

命令行输出


合并分支

git merge test2
git branch
ls
git checkout test2
ls

命令行输出

返回开发技术教程...