Reputation: 103
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
Commit page - can't find new file
Please help me.
Upvotes: 7
Views: 9419
Reputation: 81
In commit window on the bottom you have checkbox - "Show unversioned files". Make sure it's checked.
Upvotes: 2
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)
Upvotes: 3
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)
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