Git使用笔记

克隆远程仓库

https://blog.csdn.net/ljk126wy/article/details/87881923

一般克隆:git clone http://[email protected]:7070/r/virtualbox_all_versions.git

clone单个分支可以用:git clone -b branchA http://[email protected]:7070/r/virtualbox_all_versions.git,就可以实现了

 

新建分支

https://www.cnblogs.com/smileyes/p/8943234.html

切换分支:git checkout master

删除分支:git branch -d 分支名

 

你可能感兴趣的:(日常问题)