git推送所有分支到远程分支,git 本地分支同步远程最新分支

  git推送所有分支到远程分支,git 本地分支同步远程最新分支

  1.创建本地分支local_branch。

  git分支local_branch

  2.创建本地分支local_branch并切换到local_branch分支。

  git签出-b local_branch

  3.切换到分支local_branch

  git签出local_branch

  4.将本地分支local_branch推送到远程分支remote_branch,建立关联关系。

  A.远程有一个remote_branch分支和本地分支local_branch已关联,本地已切换到local_branch。

  远程仓库名

  b、远区有remote_branch分支,但是本地分支local_branch没有关联,本地已经切换到local_branch

  git push -u origin/remote_branch

  C.远程区域没有remote_branch,本地已经切换到local_branch。

  git推送原点local_branch:remote_branch

  5.删除本地分支local_branch

  git分支-d local_branch

  6.删除远程分支remote_branch

  git推送来源:remote_branch

  GitBranch -M -m旧分支newbranch重命名该分支。如果NewBranch的名称分支已经存在,则需要使用-m强制重命名。否则,使用-m将其重命名。

  Git branch -d -D branchname删除branchname分支

  Git branch -d -r branchname删除远程branchname分支。

  7.检查当地分行

  git分支

  8.检查远程和本地分支

  列出所有分支

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

相关文章阅读

  • git提交代码操作,git怎么提交代码
  • git提交代码操作,git怎么提交代码,利用git提交代码的方法步骤
  • git安装教程 安装配置,如何搭建git环境
  • git安装教程 安装配置,git安装与环境变量配置,Git下载、安装与环境配置的详细教程
  • git修改commit内容,git commit信息修改
  • git修改commit内容,git commit信息修改,详解git commit --amend 用法
  • git代码服务器,git版本命令
  • git代码服务器,git版本命令,Git版本控制服务器详解
  • git下载太慢怎么办,解决git下载很慢的问题
  • git下载太慢怎么办,解决git下载很慢的问题,git详细安装教程及下载太慢的解决办法
  • git 设置忽略文件,git修改gitignore不生效
  • git 设置忽略文件,git修改gitignore不生效,git设置忽略文件.gitignore的方法
  • ,,详解Git合并分支的流程步骤
  • ,,使用git命令上传代码
  • ,,Git恢复之前版本的两种方法reset、revert(图文详解)
  • 留言与评论(共有 条评论)
       
    验证码: