zoukankan      html  css  js  c++  java
  • git常用操作

    1. 切换到被copy的分支(master),并且从远端拉取最新版本

    $git checkout master

    $git pull

    2. 从当前分支拉copy开发分支

    $git checkout -b dev

    Switched to a new branch 'dev'

    3. 把新建的分支push到远端
    $git push origin dev

    4. 拉取远端分支
    $git pull

    There is no tracking information for the current branch.
    Please specify which branch you want to merge with.
    See git-pull(1) for details.

    git pull <remote> <branch>

    If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> dev

    经过验证,当前的分支并没有和本地分支关联,根据提示进行下一步:
    5. 关联

    $git branch --set-upstream-to=origin/dev
    6. 再次拉取 验证

    $git pull

    add Add file contents to the index
    mv Move or rename a file, a directory, or a symlink
    reset Reset current HEAD to the specified state(可用于撤销操作) 如: git reset --soft head(头信息)
    rm Remove files from the working tree and from the index(警用)

    如有错误,请邮件zs253499660@sina.com,如有更好的方法,可以推荐
  • 相关阅读:
    数据库之表与表之间的关系
    数据库之完整性约束条件
    基本数据类型
    数据库
    Django ajax 发送post请求 前端报错解决
    Django数据库建立注意事项
    编程单词汇总
    程序员必掌握600单词
    python思维导图
    用jQuery模拟hover选择效果
  • 原文地址:https://www.cnblogs.com/senjiang/p/13269563.html
Copyright © 2011-2022 走看看