Svn add *. so files. When you use svn add in linux to add and upload files to svn ,*. so *. bin and other files are ignored: www.2cto.com two solutions: Method 1: each time you add a file, use the following command: svn add -- no-ignore folder Method 2 :. edit Any of the following files (the configuration file of the linux svn client)/etc/subversion/config (valid for all users on the server )~ /. Subversion/config (valid for the current user, it will overwrite the above configuration www.2cto.com "/etc/subversion/config", instead of adding it based on the previous configuration) uncomment the line containing "global-ignores =" in the file, and delete all the characters after "=. Note that do not leave spaces in front of global-ignores. You can leave them at the very beginning. Otherwise, the following error occurs during svn add: svn:/etc/subversion/config: 103: option expected. Save the config file (after saving the file, SVN loads the configuration immediately, and then you can use it immediately. There will never be missing files.