svn - Can we remove the lines of file committed in certain revision? -
for example:
svn rev - 100:
this main file content. commited content till 100.
svn rev - 101:
this main file content. modification done on rev 2. commited content till 100.
svn rev - 102:
this main file content. modification done on rev 2. committed content till 100. modification done on rev 3.
is there svn tool or way committed content of rev 100 , 102 ?
output should be:
this main file content. committed content till 100. modification done on rev 3.
i don't think possible. whole point of using svn store different versions of file can lookup revision.
that being said, use svn cat
contents of file @ r100
, , again @ r102
, manually merge contents of outputs intended result.
Comments
Post a Comment