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