2009/5/29 nakro <[email protected]>: > > Hi, > > 1- > if i want to see ONLY the .cc files i changed in a folder i type > svn diff *.cc <-works > but say i do the same in ...\src\chrome > i get this : > > svn: Can't open file '*.cc\.svn\entries': ??T? ,-.?, T? ,`"~%, ?. ,?╪? > %~ T? ?..% > ? ??-'% ,?╪`.? T,.%%?. > > which i need to find all the changes i did (svn diff by itself is too > much info and i need to filter) > > 2- > i would like to use windiff against my modified sources > so say i have modified > a.cc > > if i do a "svn revert a.cc" it will overwrite my modified file, which > is not what i want > and "svn diff a.cc" is not very readable to me > > so what i would like to do is revert but give a new name for the file > and then i can add a tool in the IDE to quickly windiff > > thanx > > > > >
1. svn diff `find . -name "*.cc"` 2. svn diff a.cc | patch -Rp0 -o a_trunk.cc -- Evan Stade --~--~---------~--~----~------------~-------~--~----~ Chromium Developers mailing list: [email protected] View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~----------~----~----~----~------~----~------~--~---
