Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

commit

svn

add

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.

like image 272
Ann Avatar asked Dec 07 '15 10:12

Ann


2 Answers

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
like image 69
Lazy Badger Avatar answered Sep 24 '22 23:09

Lazy Badger


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

like image 24
David Abragimov Avatar answered Sep 23 '22 23:09

David Abragimov