Unisync
Documentation Download GitHub

Getting Started

You must install unisync locally and remotely. You then create a config file for your connection on the local side, and run it to have it connect to the remote side. It connects over SSH by default, so you must have an SSH public key already in place.

Download & Install Unisync

Go to the Download Page and follow the instructions to install unisync on the local and remote sides. For example, if you're on a Mac laptop connecting to a Linux VPS, you would follow the Mac instructions for your laptop, and then SSH into your VPS and follow the Linux instructions to install it there.

Create a Config File (locally)

Your config files always live on the local side. Let's create a simple config file. We'll call it test.conf and we'll put it in the ~/.unisync folder locally.

mkdir -p ~/.unisync
cd ~/.unisync
nano test.conf

Now paste this into the file:

local = /Users/nick/mydir
remote = /home/nick/mydir
user = nick
host = 123.123.123.123
ignore = .git

Replace the username and IP with the ones you use to SSH into your remote server. Replace the local and remote paths appropriately. We also added an ignore line so that your .git folder doesn't get synced. That's optional-- we're just demonstrating how to exclude files or directories from syncing. There are actually plenty more options you could add, but we can worry about that later.

When you're done, save the file and exit.

Run Unisync

Now we're ready to run unisync locally. It'll connect to the remote copy we installed before and do its thing until you exit. Since we called our config file test.conf earlier, we'll invoke it with "test" (the .conf is optional). You can call it anything you want, though.

unisync test