Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread Fredrik Lundh
Kenneth Gonsalves wrote: >> when I do "svn diff" the pyc-files are still listed. >> guess I have to delete that files from the repository first. right? > > svn remove will delete the files on the next commit adding things to global-ignores does *not* affect files that are already checked in.

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread Kenneth Gonsalves
On 30-Nov-06, at 12:19 AM, patrick k. wrote: > hmm, that doesn´t really change anything. > > when I do "svn diff" the pyc-files are still listed. > guess I have to delete that files from the repository first. right? svn remove will delete the files on the next commit -- regards kg http://law

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread Fredrik Lundh
Rob Hudson wrote: > Yes, I guess I should have said "And tell subversion to ignore them." if you read the original message again, you'll notice that the OP had already done that. --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread Rob Hudson
patrick k. wrote: > when I do "svn diff" the pyc-files are still listed. > guess I have to delete that files from the repository first. right? Yes, I guess I should have said "And tell subversion to ignore them." Once you set Subversion to ignore *.pyc, they won't be added anymore. But if you cu

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread patrick k.
hmm, that doesn´t really change anything. when I do "svn diff" the pyc-files are still listed. guess I have to delete that files from the repository first. right? thanks, patrick Am 29.11.2006 um 18:42 schrieb Rob Hudson: > > Or tell Subversion to ignore them. > > You should have a file: ~/.su

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread Rob Hudson
Or tell Subversion to ignore them. You should have a file: ~/.subversion/config (on Mac or Linux, not sure where it is on Windows) In that file under the header "[miscellany]" there's a "global-ignores" setting. Just add *.pyc to that list. -Rob --~--~-~--~~~---~-

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread va:patrick.kranzlmueller
thanks. Am 29.11.2006 um 17:51 schrieb Marcin Jurczuk: > > find . -name '*pyc' |xargs svn delete > to delete them: > find . -name '*pyc"|xargs rm -f > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

offtopic: delete *.pyc from subversion

2006-11-29 Thread va:patrick.kranzlmueller
in my svn-repository, I´m having *.pyc-files. question is: how do I get rid of these files? global-ignores is set to *.pyc now (after initial import and some changes). do I have to manually delete the pyc-files? since my svn-repos is django-related I dare to ask. thanks, patrick --~--~--

Re: offtopic: delete *.pyc from subversion

2006-11-29 Thread Marcin Jurczuk
find . -name '*pyc' |xargs svn delete to delete them: find . -name '*pyc"|xargs rm -f --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegr