相关命令
将远程仓库地址项目拉取到本地
git clone 地址
(http)
连接远程仓库地址和本地
git remote add origin 地址
将本地master分支版本库内容上传到远程仓库
git push -u origin master
查看目前已有分支信息
git branch
新建分支并进入该分支
git checkout -b new_branch
将工作目录所在分支切换到指定分支
git checkout branch
删除分支
git branch -d branch
合并分支
git merge branch
给分支重命名
git branch -m|-M oldbranch newbranch
查看远程及本地的所有分支
git branch -a
将本地branch_name分支上传到远程origin仓库中
git push origin branch_name
删除远程仓库remote_branch分支(本地分支还在)
git push origin :remote_branch
新建一个local_branch分支并将远程仓库origin当中的remote_branch分支拉去
git checkout -b local_branch origin/remote_branch
远程仓库相关
将项目拉取到本地
复制项目地址
(粘贴快捷键 shift+insert)
使用命令
git clone https://gitee.com/.....
将项目推送到仓库
和远程绑定联系
添加一个远程仓库并且起了一个别名叫origin
将master上传至origin
(http)
连接远程仓库地址和本地
git remote add origin 地址
将本地master分支版本库内容上传到远程仓库
git push -u origin master
Git分支操作
本地分支操作
git branch
git checkout -b new_branch
git checkout branch
git branch -d branch
git merge branch
git branch -m|-M oldbranch newbranch
合并分支时,一定要将其他分支合并到master,不要合并错住客
远程分支操作
git branch -a
git push origin branch_name
git push origin :remote_branch
git checkout -b local_branch origin/remote_branch