Search code examples
svnadditioncommit

TortoiseSVN: when I try to commit, it doesn't show new files


Using Tortoise SVN Client Version 1.9.2, Build 26806 - 64 Bit on Windows 7 64 bit Professional K

In a folder - I can find new file

Folder showing new file

Commit page - can't find new file

Commit page not showing new file

Please help me.


Solution

  • If you have some ignore-pattern defined in directory, any unversioned file, which match any pattern, will not be shown in TSVN dialogue (as expected)

    enter image description here

    while

    WC>dir /B
    1.txt
    1.dat
    1.tmp
    

    because

    WC>svn pl -v .
    Properties on '.':
      svn:ignore
        *.bak
        *.tmp
    

    and it's (ignoring) also visible with full status

    WC>svn st --no-ignore
     M      .
    ?       1.dat
    I       1.tmp
    ?       1.txt