命名
git 分支分為集成分支、功能分支和修復(fù)分支,分別命名為 develop、feature 和 hotfix
分支相關(guān)命令
- 創(chuàng)建并切換分支:
git checkout -b iss53
相當(dāng)于: - 創(chuàng)建分支
git branch iss53 - 切換分支
git checkout iss53 - 刪除分支
git branch -d iss53 - 刪除遠(yuǎn)程分支
git push origin --delete iss53 - 查看分支
git branch -a
tag相關(guān)命令
git tag xxx發(fā)版
git push --tags
https://blog.csdn.net/u013374164/article/details/78831273