good(0) bad(0) views(283)
comments(0)
If you have no idea what Subversion is, or how to install Subversion, or how to add photos to a Subversion repository, please read Organize and version control digital photos with Subversion (basic) first. Here we are going to discuss some advanced topics.
Recommended folder layout
Subversion has no restriction on the folder layout in the repository. What folder layout to choose is totally up to you. The Subversion documentation recommends creating a "trunk" and a "branches" folder at the root of the the repository. Here's a folder layout I use:
|-trunk
| |-20070901
| \-20080304
\-branches
|-web
| |-20070901
| \-20080304
\-printing
|-20070901
\-20080304
I keep the maximum-size photos in the "trunk" folder. When I need to resize or crop some photos, for example, for posting on my website, I do the converting job and then put the converted photos in the "branches" folder.
Move/Rename photos
Suppose you followed the instructions in Organize and version control digital photos with Subversion (basic) and created such a folder layout:
|-20070901
\-20080304
How do you convert this layout to the one recommended above? Here you need the "move" command. You can follow these commands:
...
Read the whole topic