vote up 3 vote down star
1

Some of my co-workers put almost everything in the SVN-repository. That makes me mad, because there are several >10MB pdfs in there, and every time I checkout the whole project I have to download those.

In my opinion they are misusing the repository. What can I do?

Update: Personally, I wouldn't put the pdf files in the repository. Instead of pdf : versioning .tex ( much smaller and not binary )

flag

2  
don't sync them. And you should really get pissed off if you have pdf documents that are not related to code are uploaded under code folder. And if pdf's are related to code. you can have them all in one folder and don't sync that folder. As simple as that. Stay peace ! – Broken Link Jul 30 at 16:23
2  
You should rewrite the title of this question. Your title suggests that you want to do this, but others are giving you a hard time about it. In fact, you want them to stop doing it. – Telemachus Jul 30 at 16:23

closed as not programming related by Jonathan Sampson, sykora, Sinan Ünür, marc_s, jjnguy Jul 31 at 1:51

15 Answers

vote up 12 vote down check

Are they generated? Never put generated content under source control.

Are they developer docs, like instructions for a library? A wiki would be better.

Are they site content / user docs / distributed with the delivery - it's part of the program, version it just like you would graphical resources.

link|flag
1  
I totally agree with you on the "generated" part. – Stefan Egli Jul 30 at 16:27
1  
Since the PDFs appear to be generated from .tex files, I absolutely agree that they shouldn't be under source control. – velociraptors Jul 30 at 17:43
vote up 13 vote down

I don't see any problem with versioning a PDF if it could ever change. That way you can track the changes made to the PDF over the years of development much like you do your code.

Update after clarification: Since there is source to these PDF files, only the source should be stored. Storing the PDF files would be like storing the compiled objects generated from your source code.

link|flag
2  
+1 that's what we do. Our pdfs aren't created by the dev team, so when someone makes a mistake and the wrong version goes into prod, it is "get it out of svn" instead of "do you still have that email from 2 months ago which had the previous version?" – Kevin Jul 30 at 16:24
I've heard some people allude to performance problems when svn repos become to large. There's also the problem that you can't delete these files from the history (w/o jumping through hoops), so you're stuck with them. – Dana the Sane Jul 30 at 16:39
yes, pdf too must be under the version control, but thing is that it should not messed up with the coding/developing part of the project, performance down in the sense that on each checkout need to wait to download the whole documentation pages may be ?? Mbs of documents. – shahjapan Jul 30 at 17:28
FYI: The OP added that the PDFs are generated from .tex source files. – Sinan Ünür Jul 30 at 18:14
vote up 9 vote down

Keep the Code and Document on different folder [ different SVN Checkout Path ], so you will not get such problems while check out your project.

It May be like following structure.

[Your Project]
|
Project_Name -> Trunk, Branches, Tags
|
Documents -> your PDF Files...
link|flag
vote up 3 vote down

IT makes a lot of sense to version documents just like code, that way you know who created it, last altered it, etc. if it's really a problem set up a second repository for versioning PDF, images, etc.

link|flag
vote up 3 vote down

Documents require version management, just like code. That being said, please continue reading for an option that may fit your situation.

If hosting docs and code in the same repo is a show-stopper for you, then consider placing the documentation in a separate repository. The document repo can then be referenced via a svn:externals link.

Users that want/need the documentation will not be affected since they will still receive the docs from a normal checkout operation. Users that are savvy and do not want the documents can pass the '--ignore-externals' option when checking out to prevent them from being pulled.

link|flag
vote up 2 vote down

Memory is so cheap now a days that storage is not an issue. If performance is an issue, simply exclude that part of the project. That being said, putting PDFs in version control is NOT a misuse of SVN.

link|flag
vote up 2 vote down

Version control for documents is also important. We have them in separate repositories, however, which makes this a non-issue.

link|flag
vote up 1 vote down

Are the PDFs changing? If so, they ought to be under source control.

link|flag
vote up 0 vote down

Is there a flag that you can set in version control to ignore that directory when getting latest? That way it won't automatically get latest on the directory, you would manually have to.

link|flag
vote up 0 vote down

if they're not required for building your project, do you have to check them out? could you not just do a selective check out?

link|flag
vote up 0 vote down

Maybe you should have one repository for coding and one for documentation ... so downloading the code does not result in downloading unwanted documentation and vice versa

link|flag
vote up 0 vote down

don't sync them. And you should really get pissed off if you have pdf documents that are not related to code are uploaded under code folder. And if pdf's are related to code. you can have them all in one folder and don't sync that folder. As simple as that. Stay peace !

link|flag
vote up 0 vote down

It definitely makes sense to have anything and everything under version control, but you're right that large binaries can be a waste of time to checkout.

Put the PDF files and all of the code in different top-level directories so that you can check them out separately.

link|flag
vote up 0 vote down

If they don't version the executable binaries built from the source code, then they shouldn't version the binary documents produced from other sources (tex, docbook, etc.) either.

It's just common sense.

link|flag
vote up 0 vote down

If there is any question as to weather the tex files may not compile under all systems you are using them on, you should version the pdf. This is the rule that R uses for its vignettes, it makes things go much smoother.

link|flag
then they shouldn't be in the source versioning system, but in external build repositories. – fortran Jul 31 at 15:57

Not the answer you're looking for? Browse other questions tagged or ask your own question.