1、初始化 git init 2、切换到某分支 git checkout name 3、创建某分支 git branch name 4、查看本地所有分支 git branch 5、查看远程所有分支 git branch -r 6、查看本地和远程所有分支 git branch -a 7、删除本地分支 git branch -d name 8、重命名 git branch -m 分支名 新分支名 9、拷贝、下载 git clone -b 分支名 仓库地址更新分支代码并提交
git add * //将文件添加到暂存区
git commit -m "注释" //将暂存区内容添加到本地仓库中
git pull origin 分支 //拉取代码,解决冲突
git push origin 分支名 //将本地分支推送到远程分支
git拉取代码的在整体流程
初始化git init
连接远程库 git remote add origin 路径
新建分支 git checkout -b 本地分支名
拉取代码 git pull origin 远程分支
菜鸟教程git基本操作:Git 基本操作 | 菜鸟教程