git开发中常用命令
Posted sui776265233
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git开发中常用命令相关的知识,希望对你有一定的参考价值。
项目代码克隆岛本地
git clone 项目地址 #如:git clone http://cngit.fir.ai/data_service/distributedstorage.git
克隆指定分支的代码
git clone -b 分支名 项目url #如:git clone -b fastdfs-dev http://cngit.fir.ai/data_service/distributedstorage.git
查看当前项目所在的分支
git branch #查看本地分支 #(storage) [email protected]:~/distributedstorage$ git branch #* fastdfs-dev git branch -a #查看远程分支
项目切换到指定的分支
git checkout -b v1 origin/v1
切换回master分支
git checkout master
以上是关于git开发中常用命令的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程