Tag Archives: svn

find file in svn

after out switch from cvs to svn all old (not more improved) project where copied to a chaotic seperate lagacy svn… and hurray… i need to find some code in there… so how to search?

svn list -R https://subversion/repository | grep filename

but it takes for ever… so i used:

svn list -R file:///subversion/repository | tee svnlegacy.log

so i see, that it is still working… takes for ever… and if there is a typo in the file, i am looking for, i can search it much fuster in the logfile…

and yeah… still running 🙁

svn and eclipse… and maven

ok one of the problems of eclipse with svn is that no eclipse specific file should be commited to the repository… mainly because they are developers computer specific and kinda crap on others computers… additionally not every one uses eclipse… so that the hell should he be doing with the eclipse files? so goal is to delete and ignore them… simple… but now every body needs to set his project localy correctly…

with maven it is actually a bit more confusing… which folders to add? how to add the Maven Dependencies?

Right Click the Project -> Maven -> Update Project Configuration

Done 🙂