• git创建和删除远程分支


    问题描述:

              使用git创建和删除远程分支

    问题解决:

                 (1)git创建本地分支

    git chuangjain

    注:   

            如上所示,使用命令 git branch -a 查看所有分支情况,以及当前分支

             使用命令git branch temporary 创建分支temporary

             使用命令 git checkout temporary 切换到temporary分支

         (2)git创建远程分支

    gittemporary

    注:

             如上所示,在本地分支 temporary中创建文件 并commit之后,创建远程分支 git   push  origin  temporary:temporary

          其中origin是远程仓库,第一个temporary是本地分支,第二个temporary是远程新建的分支(github中为例子)

    fenzhi

    注:

           如上图所示  temporary是刚才创建的远程分支

        (3)删除远程分支

               1)使用命令 git  push origin --delete 远程分支名   

    git delete

    注:

          使用命令  git    push   origin --delete hello (hello为远程分支名称)

    shanzhi

    注:

             github中删除远程分支hello之后效果图

           2)使用命令  git   push origin  :temporary

    shantemp

    注:

            使用命令  git   push origin  :远程分支名

    shan tempe

    注:

              删除远程分支之后的效果图

  • 相关阅读:
    [转]Modernizr的介绍和使用
    java动态代理使用详解
    ajax上传文件以及使用中常见问题处理
    cmd下查询端口占用以及根据进程id名称结束进程
    水平居中 垂直居中
    inline-block和float
    一起入门前端(三)
    一起入门前端(二)
    一起入门前端(一)
    WPF初学——自定义样式
  • 原文地址:https://www.cnblogs.com/luosongchao/p/3408363.html
Copyright © 2020-2023  润新知