且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

git删除分支与合并分支

更新时间:2022-10-05 08:23:59

分支删除

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

命令行输出

git删除分支与合并分支


合并分支

git merge test2
git branch
ls
git checkout test2
ls

命令行输出

git删除分支与合并分支

git删除分支与合并分支


本文转自 素颜猪 51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1907197