Blog.



Selfhosted Crossplatform Notes with Gitjournal

(April 23, 2021)

The problem

The "app market" for mobile phones is a very sad place. I wish it had followed the direction of Linux distributions, with their repositories containing all the useful software tools you'd ever need, free and open source. Instead we have a duopoly of app stores that are both filled with "app developers" trying to make a buck instead of tools that people actually want.

As such, when I find a phone application that is actually built for usefulness, follows decent design principles, and allows for a personalized workflow, I think it's necessary to give it a shoutout.

For a long time I've wanted a digital note taking solution that would allow me to synchronize notes across multiple devices. I wouldn't want to use Evernote or any other proprietary, centralized service. Selfhosting something like Nextcloud just for the purpose of notes feels like shooting a fly with a cannon. If I were limited to computers, it would be a no-brainer to just keep the notes in a git repo (like I do with my command line cheatsheets). How do we synchronize with a phone though?

Enter gitjournal.

Enter gitjournal

Gitjournal essentially provides a git client on your phone whose design is centered around note taking. I won't go into all the features and design details, but it's got everything I need for simple note taking:

And the killer feature is that you also provide a link and login credentials for an external git repo. Every edit to the notes is committed and eventually pushed to that repo. Any changes that appear in the repo will be pulled to your device.

And of course the git repository can be hosted anywhere. If you trust your forge with your personal notes, be it GitHub, GitLab, sourcehut, or anywhere else, your forge is now also your note synchronization hub. Personally, I host my notes on my VPS.

Computer side, I've written a short script that takes care of git operations and some of the metadata in gitjournal notes, and lets me select a note to edit with fzf. But even manually navigating to notes and handling git operations wouldn't be a bad experience.

Caveats

The app, in the end, is made for profit. In particular, on the Apple App Store even the basic version costs money (it's free on Android). There are some additional features that are further paywalled. This includes tagging and multiple repositories, both of which would be nice to haves for me, but their lack is not a deal breaker in my case. However, the app is open source (I think including the "pro" features) and AGPL'd so if you know how to build it for your phone, it's yours.

I haven't had to deal with merge conflicts in the app. I'm not sure how they're handled. I'm not too worried though, if anything weird does happen, I'm sure I'll be able to fix it computer-side. Nothing a little force pushing to master can't solve.

You might have to be careful with some symbols in note titles that are treated as special symbols by your OS (e.g. ~, !, [, ], etc.). The app won't complain about them, they might cause problems on your computer.

As mentioned, the app commits every change you make to your notes. As such, I prefer to use it for jotting down ideas, archiving links, writing down interesting thoughts I have, long term todos — in other words, more persistent notes. For daily todo or shopping lists I use a different app. This isn't a huge problem since I don't really need those things synchronized across devices. I think in my ideal world, gitjournal would have "scratch notes" that are not tracked in the git repo, so that I can keep all these things in one app without littering git history with "buy eggs" every week.

If you have any questions or comments about this post or site in general, feel free to email me.