• 2018-2-13-git-合并两个仓库


    title author date CreateTime categories
    git 合并两个仓库
    lindexi
    2018-2-13 17:23:3 +0800
    2018-2-13 17:23:3 +0800
    git

    好了还是回到问题,我想把两个git合并

    首先用git bash 到我的一个仓库,作为需要合并的仓库

    cd 仓库

    添加我要合并仓库

    # git remote add 仓库 仓库可以是远程仓库
    git remote add lindexi git@github.com:lindexi/lindexi.github.io.git

    从远程仓库下载,这时我们弄个新的

    git branch lindexi
    git checkout lindexi
    git fetch lindexi
    git merge lindexi/master
    解决冲突
    git add .
    git commit -m "合并"
    git push lindexi lindexi:master
    git 我有两个仓库,一个是gitbook在写一本UWP入门,一个是放在github的垃圾,这个是我想要开个人网站,但是做的还是不行https://github.com/lindexi/lindexi.github.io结果发现我需要做html,本来的文件没法直接转过去,但是我又不想使用第三方工具,于是最后我想着自己来写一个,于是就做了winMarkdown,win10软件,不过已经几个月没做
    
    好了还是回到问题,我想把两个git合并
    
    <!--more-->
    
    <div id="toc"></div>
    
    首先用git bash 到我的一个仓库,作为需要合并的仓库
    
    ```csharp
    cd 仓库

    添加我要合并仓库

    # git remote add 仓库 仓库可以是远程仓库
    git remote add lindexi git@github.com:lindexi/lindexi.github.io.git

    从远程仓库下载,这时我们弄个新的

    git branch lindexi
    git checkout lindexi
    git fetch lindexi
    git merge lindexi/master
    解决冲突
    git add .
    git commit -m "合并"
    git push lindexi lindexi:master
    git checkout master
    git merge lindexi
    git branch -d lindexi
  • 相关阅读:
    yum 崩溃的解决方法
    线上mysql数据库删库恢复的案例
    CVE-2018-8120 WIN7 08提权漏洞exp
    CVE-2018-1111 劫持dhcp造成Redhat、centos代码执行
    关于 Python generator(生成器)的类比
    黯淡蓝点:旅行者号64亿公里外回望地球...
    raise RuntimeError("autoconf error") RuntimeError: autoconf error
    python 调取 shell 命令的几种方法
    struct 处理二进制
    linux 下日常使用便利工具
  • 原文地址:https://www.cnblogs.com/lindexi/p/12086610.html
Copyright © 2020-2023  润新知