美文网首页
gitee建立自己仓库

gitee建立自己仓库

作者: 银弹星空 | 来源:发表于2021-12-07 10:52 被阅读0次

    1.安装git

    官网地址: https://git-scm.com/
    下载安装

    2.配置用户信息

    $ git config --global user.name “github’s Name”
     
    $ git config --global user.email "github@xx.com"
     
    $ git config --list
    

    3.先创建远端仓库

    远程创建仓库,本地直接clone

    git clone  (your url 远程仓库的地址)
    

    4.创建本地仓库与远端关联

    本地创建仓库 git init 提交本地内容

    git init
    git add --all
    git commit -m"init"
    

    关联远端仓库 git remote add 然后获取远端内容

    git remote add origin https://gitee.com/xx/xx.git
    git pull origin master
    报错
    refusing to merge unrelated histories (拒绝合并不相关的历史)
    合并两个独立启动仓库的历史--allow-unrelated-history 执行:
    git pull origin master --allow-unrelated-histories
    报错
    Automatic merge failed; fix conflicts and then commit the result.
    自动融合失败,手动解决冲突,保存提交。
    关联成功
    

    相关文章

      网友评论

          本文标题:gitee建立自己仓库

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