git语法中如何利用branch命令列出、创建、删除分支等操作

2024年11月08日 建站教程

git查看分支

git branch

git创建分支

git branch feature-B

git切换分支

git checkout develop

git创建并切换分支

git checkout -b feature-C

git删除分支

git branch -d feature-A

本文链接:http://so.lmcjl.com/news/17307/

展开阅读全文
相关内容