Ann
Ann

Reputation: 103

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.

Upvotes: 7

Views: 9419

Answers (3)

mihauuuu
mihauuuu

Reputation: 81

In commit window on the bottom you have checkbox - "Show unversioned files". Make sure it's checked.

Upvotes: 2

David Abragimov
David Abragimov

Reputation: 544

In additional to already mentioned in the accepted response: in TortoiseSVN windows client you can see/modify ignored patterns in folder properties dialog (right mouse click to folder name ->properties->Subversion) enter image description here

Upvotes: 3

Lazy Badger
Lazy Badger

Reputation: 97282

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

Upvotes: 6

Related Questions