Difference between revisions of "SVN"

From www.b-kaempgen.de
Jump to: navigation, search
(Created page with "Description::Useful commands for SVN. * See contents of an older version of a file: ** First, look for versions: svn log file ** Second, open version: svn cat -r r11492 int...")
 
 
Line 4: Line 4:
 
** First, look for versions: svn log file
 
** First, look for versions: svn log file
 
** Second, open version: svn cat -r r11492 introduction/main.tex | less
 
** Second, open version: svn cat -r r11492 introduction/main.tex | less
 +
 +
==Problems==
 +
 +
===svn can't open document invalid argument===
 +
* This may happen if a file does use special characters in its name.
 +
* What you can do is "Ignore a folder during SVN updates" [http://stackoverflow.com/questions/5984625/ignore-a-folder-during-svn-updates].
 +
* You set the folder using: svn update --set-depth exclude bigFolder
  
 
[[Category:Howto]]
 
[[Category:Howto]]

Latest revision as of 14:51, 15 January 2015

Useful commands for SVN.

  • See contents of an older version of a file:
    • First, look for versions: svn log file
    • Second, open version: svn cat -r r11492 introduction/main.tex | less

Problems

svn can't open document invalid argument

  • This may happen if a file does use special characters in its name.
  • What you can do is "Ignore a folder during SVN updates" [1].
  • You set the folder using: svn update --set-depth exclude bigFolder