obsidian有个自动化同步插件,obsidian-git,配置好后,可以自动进行代码仓库的pull和commit, push操作。 先去github下载这个插件,注意,下载最新版本2.22。解压缩,放在手机和电脑的笔记仓库下面的.obsidian文件夹的plugins文件夹里。 然后,需要把笔记仓库文件夹初始化成git仓库。安卓上面推荐用Mgit这个软件,可视化操作很方便。
而且由于手机和电脑之间现在都使用的是相同标准的格式,曾经在电脑上写过的文件现在可以直接和手机互通了,因此这个管理软件应该还要有多端同步功能。 我首先看到的是黑曜石自带的Obsidian Sync,我考察了一下,发现价格不是太美丽,遂放弃。 紧接着,我想到使用网盘来同步文件夹,比如说最具代表性的坚果云文件夹同步。我...
自建obsidian同步服务 最近GitHub上有这样一个项目rev-obsidian-sync,他逆向了obsidian的同步服务,使其可以在本地运行。 服务端 安装 首先安装服务端, gitclonehttps://github.com/acheong08/rev-obsidian-synccdobsidian-sync go run cmd/obsidian-sync/main.go go会下载一堆依赖,然后你会在最下面看到这个 当然你...
Obsidian其实没必要开通Sync服务,用Git做对外订阅、同步云或多层Git做私有同步,就足够了。别人还能通过Git来订阅你的Obsidian笔记,以及PullRequest给你它的想法(当然别忘了.gitignore来设置私有文件与目录),这样Obsidian官方的Sync和Publish就都没必要了。#obsidian# ...
git clone https://github.com/acheong08/rev-obsidian-synccdobsidian-sync go run cmd/obsidian-sync/main.go go会下载一堆依赖,然后你会在最下面看到这个 image.png 当然你也可以自定义域名,设置环境变量,DOMAIN_NAME设置域名,ADDR_HTTP设置监听端口,DATA_DIR设置数据保存的文件夹,SIGNUP_KEY设置注册的密钥。
直接下载个git,笔记文件存git仓库里,同步的话就把本地仓库push到远程仓库,其他电脑也下个git,直接clone远程仓库,就同步了。 手机可以用note commander或Mgit把仓库clone下来,这样手机和电脑也同步了。 2024-06-26· 辽宁 回复7 凡花絮事 Kevin git的repo可以设置为private吧 2024-10-22· 上海 回复...
Search "Obsidian Git" to install, then you will need to activate at the Community Plugins page. This plugin will directly use your git settings in the folder to sync to Github. After installation and activation, there will be a plugin settings for Obsidian Git. If you just want to view ...
With just a few simple steps, you can enable auto sync and enjoy the convenience of accessing your notes from any device, be it mobile or dekstop, always up-to-date! This plugin is designed to be easy to install and configure compared to other plugins, no need to tackle git repos or ...
(1)第一种是自带的Obsidian Sync,这种最简单,但需要氪金,注册登录交钱就行了。鉴于本人坚定的白嫖党,所以选择下面第二种方法。 (2)第二种是借助第三方软件进行同步辅助。同步的本质是不同终端的文件夹映射。由于移动端暂不支持直接连接外部云盘,需要通过第三方如FolderSync或者DropSync软件将移动端的文件夹(手机本地...
最近GitHub上有这样一个项目rev-obsidian-sync,他逆向了obsidian的同步服务,使其可以在本地运行。 服务端 安装 首先安装服务端, 代码语言:text 复制 git clone https://github.com/acheong08/rev-obsidian-sync cd obsidian-sync go run cmd/obsidian-sync/main.go ...