-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.example.yml
47 lines (38 loc) · 993 Bytes
/
config.example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# Name of the Unison profile to create. This becomes
name: projects
# Info regarding the local directory you'd like to sync to remote
local:
root: ~/Projects/
# Info regarding the remote directory you'd like to sync to local
remote:
username: crgwbr
host: myserver.com
root: ~/Projects/
port: 22
# In the event of a conflict, which version should win? Must be set to either `local` or `remote`.
prefer: local
# Optional: list of files, paths, and patterns to ignore.
syncIgnore:
# Ignore OS X garbage
- Name .DS_Store
# Ignore Unison's temporary files
- Name *.unison.tmp
# Ignore node_modules directories
- Name node_modules
# Ignore .tox virtual environments
- Name .tox
# Ignore Python stuff
- Name __pycache__
- Name .eggs
- Name .egg
- Name site-packages
- Name lib64/
- Name parts/
- Name sdist/
- Name var/
# Other misc options padded through into the unison config file
options:
auto: true
batch: true
confirmbigdel: true