-
Notifications
You must be signed in to change notification settings - Fork 8
Getting Started
Henning Weiss edited this page Aug 23, 2014
·
5 revisions
mOrgAnd works by synchronizing with a Git repository. This requires you to have all your org files under Git version control. You should also have a server where you host your repository. Github offers private repositories for a small monthly fee. A free alternative to Github is Bitbucket.
- mOrgAnd does not use org-mobile-push/pull in any way. The contents of your repository should be your actual org files
- mOrgAnd will update the contents of your org files if you edit them in mOrgAnd and synchronize them. I would consider this fairly safe, as your files are under version control, but please make sure to create backups anyway!
- Remember that this is alpha grade software. Don’t trust it with important data (…yet)
- Install mOrgAnd from the Releases page
- Start mOrgAnd and click “Download wiki”
If you want to use your own Git repository, do the following:
- Press the menu button and click “Clear DB”
- Press the menu button and go to “Settings->Git”
- Click “Git local repository path” and create a new folder
- Set up everything under the “remote” section to suit your setup
- (Optional) Copy your private ssh key file to your phone (doesn’t matter where) and select it by clicking “Private ssh key file”. mOrgAnd will copy the key file to its private data storage and the key can be safely deleted
- Start synchronization
To set up a new repository, install Git on your computer and execute the following commands in your org directory:
git init
git add -A
git commit -m MESSAGE
git remote add origin URL_TO_YOUR_GIT_REPO
git push -u origin master
To enable automatic commits, pushes and pulls in Emacs I use the following: hdw_org_git.el