tags:

views:

28

answers:

2

Hi,

By default, svn st will not show the status of a shared library that has not been checked in to the repository. How to make it visible?

>svn info lib/libjmfntv.so 
svn: 'lib/libjmfntv.so' is not under version control
>svn st 
Nothing will show up; however, I want it show up like below so that I can remember to add it into the repository 
?      lib/libjmfntv.so  
+2  A: 

Use no-ignore option
svn status --no-ignore

Gadolin
A: 

You may have a look at this SO post which treats a similar issue.

zellus