September 2009
Beginner
942 pages
85h 34m
English
cat
svn cat target ...Output the contents of the specified files or URLs. For listing the contents of directories, see svn list.
Alternate names: none
Changes: nothing
Accesses repository: yes
| --revision rev, -r rev |
To view readme.txt in your repository without checking it out:
$ svn cat http://svn.red-bean.com/repos/test/readme.txt
This is a README file.
You should read this.If your working copy is out of date (or if you have local modifications) and you want to see the HEAD revision of a file in your working copy, svn cat automatically fetches the HEAD revision when you give it a path.
$cat foo.cThis file is in my local working copy and has changes that I've made. $svn cat foo.cLatest revision fresh from the repository!