Issue
i am very newbie in using svn repository
for version maintenance,
I have installed svn sucessfully on my machine(fedora 15)
suppose i had given below link to access files
http://example.com/svn-repos/folder/
I had applied following commands to add the folders Documentation
and Anotherfolder
Actually the folder Documentation
consists of pdf
files and docx
files.
svn add Documentation
svn commit -m "Creating Folder" Documentation
svn add Anotherfolder
svn commit -m "Creating Folder" Anotherfolder
The structure is as given below
svn-repos - Revision 2: /folder
Documentation/
Material/
Prsentfinance.docx
Transferfile.pdf
kelvinref.pdf
solutionsparts.pdf
Anotherfolder/
Here actually the folders with files has been sucessfully added to svn repository, but when i tried to open pdf
files under Material
folder they are unable to open and displays nothing, and when i clicked on Prsentfinance.docx
it has been downloaded.
Can anyone let me know why unable to open/download pdf files when we click on them, whether pdf files doesn't work on svn repository or we need to do any further process for uploading pdf files in to svn repository.
Solution
Try setting...
svn propset svn:executable 'ON' -R path/file.pdf
Answered By - Bharat Sinha