I have been using Subversion at my current position for just over one year. It was one of the first things I did here. I immediately implemented it as there was no versioning control of any kind in place.
Last year, I imported our entire site into Subversion. I imported it exactly as it was, garbage and all. PDFs, images, frontpage _vti_cnf folders, EVERYTHING.
I felt this would allow me to safely make any changes to the site, and give me a starting point to be able to track changes progress, etc...
Now a year later, I'm a little upset with some of the way I set this up. Mainly I want to figure out a better way to handle binary documents. I do not want to put binary files in my repository. period.
Please note
Images, are different. TortoiseSVN can compare images, and they are a different animal. They would affect the look or feel of the site. This is not the case for pdfs, word docs, excel, access dbs, zip files, movies, etc...
Here is the process for how we manage website updates to production. Updates to the site are done weekly, after the site is updated I create a tagged copy for that week.
- I get a request to update a pdf with a new version, and change the hyperlink text to have some new description
- I update my working copy to the latest version, I make the html code change to the site.
- I copy the new version of the pdf file into my working copy, replacing the old pdf with the new.
- At this point, my working copy shows 2 pending changes, though only one is actually a code change. PDFs are just content.
- I
commitboth changes to my repo. - Now when it's time to move to production, I compare my trunk with last week's tag folder.
- TortoiseSVN is able to generate an export of only the files that need to be updated on production, with full paths. I do this so I can alway have the root copied over to the production site.
- I export the files and empty folder structures to a location where another team picks it up and copies it over to production.
So using this method, both the code change and the PDF get moved to production. But, I don't like it.
My other problem, with not using the above process is that I also don't trust my memory to remember during every move to production to manually copy the pdfs into my changeset prior to moving to production.