git相关

作者: 大飞_2048 | 来源:发表于2019-10-04 15:47 被阅读0次

    1、切换分支
    git checkout -b LOG_VERSION remotes/origin/LOG_VERSION
    2、仓库搬家(包括记录)
    (1).从src_address克隆一份裸版本库
    git clone --bare src_address
      会在当前目录下产生一个 xxx.git 的文件夹
    (2). 推送裸版本库到新的地址
    cd xxx.git
    git push --mirror 新的git地址
    (3). 代码迁移就成功了,接下来就可以使用新的地址了
    git clone 新的git地址
    (4).submodule 下载更新子分支
    git submodule update --init --recursive

    3、提交本地到远程分支
    git push --set-upstream origin congestion_68
    4、将子分支上某一个提交 checkout过来到主分支的提交
    当前是在主分支上的:git cherry-pick 7fcb3defff 命令,
    就把该条commit记录合并到了master分支,这只是在本地合并到了master分支;

    相关文章

      网友评论

          本文标题:git相关

          本文链接:https://www.haomeiwen.com/subject/apkspctx.html