File: comment_2_4dc4f1ea91c72418843a682fab1854d2._comment

package info (click to toggle)
git-annex 7.20190129-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 56,292 kB
  • sloc: haskell: 59,105; sh: 1,255; makefile: 225; perl: 136; ansic: 44
file content (28 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (8)
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
[[!comment format=mdwn
 username="Jan"
 subject="comment 2"
 date="2015-01-10T10:37:11Z"
 content="""
I had the same problem an got Lightroom to work nicely with the following configuration.

Place catalog and photo data in the same directory tree, for example:


    /Lightroom/2015/2015-01-10/IMG_4432.JPG
    /Lightroom/2015/2015-01-10/IMG_4433.JPG
    ...
    /Lightroom/Catalog/Lightroom 5 Catalog.lrcat
    /Lightroom/Catalog/Lightroom 5 Catalog Previews.lrdata
    /Lightroom/Catalog/Backups


Now the image data and Lightroom metadata (= catalog) can be archived at the same time. In order to prevent temporary files and previews to get annexed use the following `.gitignore`:


    */*.lrdata
    Temporary Folder*/
    */Temporary Import Data*/
    *.lock

The downside is that previews will have to get regenerated on other machines which pull this data, but I don't use it to share my Lightroom config across computers but as an archival tool.
"""]]