windows - SVN: How to know in which revision a file was deleted? -


given i'm using svn command line on windows, how find revision number, in file deleted? on windows, there no fancy stuff grep , attempting use command line only, without tortoisesvn. in advance!

edit:

install cygwin.

i use this:

svn log -v --limit <nr> -v | grep -e '<filename>|^r' | grep -b 1 <filename> 

where

filename - name of file or pattern matches nr - number of latest revisions in want 

this give revisions actions (add, delete, remove, modify) concerning file, simple tweak grep can revisions deletion.

(obviously, --limit optional, have overview how deep need search gains performance.)


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -