Git 远程分支常用操作
Posted danhuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 远程分支常用操作相关的知识,希望对你有一定的参考价值。
# 查看远程仓库推拉地址,分支信息,分支跟踪情况等
git remote show origin
# 拉取远程仓库的变更内容到本地
git fetch origin
# 拉取并合并仓库的变更内容到本地
git pull
# 添加远程仓库跟踪地址
git remote add
# 推送本地的提交到远程仓库
git push origin branch-name
# 推送本地的提交到远程仓库的指定(新建)分支
git push origin local-branch-name:remote-branch-name
# 合并仓库的变更内容到本地
git merge origin/branch-name
# 从远程仓库中检出一个分支到本地的分支
git checkout -b local-branch-name origin/remote-branch-name
# 简写方式1
git checkout --track origin/branch-name
# 简写方式2
git checkout branch-name
# 修改本地分支的远程跟踪分支
git branch -u origin/serverfix
# 查看本地所有分支的跟踪情况,包括领先、落后情况
git branch -vv
# 删除远程分支
git push origin --delete remote-branch-name
以上是关于Git 远程分支常用操作的主要内容,如果未能解决你的问题,请参考以下文章
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段