svn newbie: revert the files that I haven't committed -
i have committed files of have modified. can imagine rest of files havent committed showed when "svn status".
how can make "dissapear" files showed when "svn status"? should revert 1 one? normal revert (svn revert -r .) revert files have committed?
regards
javi
if you're on linux box do:
svn status | grep ^m | awk '{print $2}' | xargs svn revert
Comments
Post a Comment