[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Settings - Global ignore pattern bug

From: Josh Reynolds <josh.reynolds_at_eku.edu>
Date: Fri, 29 Oct 2010 08:01:47 -0400

You can right click on it in the commit dialog and add it to the
ignore-on-commit changelist to prevent it from being selected by default
when you do a commit. We do this for some project and solution files
for visual studio. Here's a little batch file I wrote to add files to
the changelist:

@echo off

for /f "delims=" %%a in ('dir %1\*.csproj /B /S') do (
    svn cl ignore-on-commit "%%a"
)

replace *.csproj with whatever files you want to add to the changelist.

run it with:

addtocl.bat c:\dir\to\working\copy\

On 10/29/2010 7:14 AM, Nicolas Goutte wrote:
>
> Am 29.10.2010 um 13:00 schrieb Clecio - PAM:
>
>>
>> ----- Original Message -----
>> *From:* Clecio - PAM <mailto:clecandrade_at_urbs.curitiba.pr.gov.br>
>> *To:* users_at_tortoisesvn.tigris.org <mailto:users_at_tortoisesvn.tigris.org>
>> *Sent:* Wednesday, October 20, 2010 12:03 PM
>> *Subject:* Settings - Global ignore pattern bug
>>
>> The file extensions to be ignored are not being met in time to
>> make sending files to the svn repository
>>
>> <Error Global ignore pattern1.JPG>
>
> The file you show seems to be "modified". That means it is already in
> the SVN Repository. In such a case, the ignore patterns are *not*
> applied. (That is by design.)
>
>>
>> Clécio Luciano de Andrade
>
> Nicolas Goutte
>
>
> extragroup GmbH - Karlsruhe
> Waldstr. 49
> 76133 Karlsruhe
> Germany
>
> Geschäftsführer: Lars Busch
> Registergericht: Amtsgericht Münster / HRB: 5624
> Steuer Nr.: 337/5903/0421 / UstID: DE 204607841
>
>
>

------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=2677095

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2010-10-29 14:08:46 CEST

This is an archived mail posted to the TortoiseSVN Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.