1

How can i tell unison given a sync path /home/user/mydata to only sync

/home/user/mydata/file.txt
/home/user/mydata/data.txt
but not
/home/user/mydata/subfolder

I've simplified the question to this example but is there a way to tell it to sync only files at a specific path?

user391986
  • 29,536
  • 39
  • 126
  • 205

1 Answers1

0

In your profile for that directory you can do something like

ignore = Path subfolder

For more examples take a look at the example here

patrick
  • 574
  • 3
  • 10
  • 25