美文网首页
BookxNote Pro设置同步简单记录

BookxNote Pro设置同步简单记录

作者: 梧叶已秋声 | 来源:发表于2023-03-17 17:25 被阅读0次

    1.创建本地git仓
    在BookxNote 中 启用Git自动备份笔记数据


    image.png

    然后就会自动生成git仓.


    image.png

    然后把文件add进来,commit.
    2.在github上新建远程仓库
    这步不赘述.
    3.关联远程仓库
    git remote add origin https://xxxxxxxxx.git
    查看是否添加成功
    git remote -v
    然后push到远程.
    git push orgin master
    然后pull 同步下远程仓库,现在是默认main分支是主线了.
    本地仓切到main分支,执行git merge.
    git merge master --allow-unrelated-histories
    再执行
    git push orgin main

    参考链接:
    git 将本地项目关联到远程仓库
    解决Git中fatal: refusing to merge unrelated histories

    相关文章

      网友评论

          本文标题:BookxNote Pro设置同步简单记录

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