Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subversion (SVN) and static libraries (.a files) compatibility?

I can't add .a files (static libraries) into my repository. Why?

Is there a way to "force" SVN to accept them (at least as static files...)?

like image 374
Francescu Avatar asked Sep 16 '10 08:09

Francescu


1 Answers

The svn:ignore property contains a list of file patterns which certain Subversion operations will ignore.

Also do you have a configuration file that global-ignores. It is a list of whitespace-delimited globs which describe the names of files and directories

The svn status, svn add, and svn import commands also ignore files that match the list.

To override for a certain instance, use the --no-ignore command-line flag:

>>>>svn help add
usage: add PATH...

Valid options:
  --targets ARG            : pass contents of file ARG as additional args
  -N [--non-recursive]     : obsolete; try --depth=files or --depth=immediates
  --depth ARG              : limit operation by depth ARG ('empty', 'files',
                            'immediates', or 'infinity')
  -q [--quiet]             : print nothing, or only summary information
  --force                  : force operation to run
  --no-ignore              : disregard default and svn:ignore property ignores
  --auto-props             : enable automatic properties
  --no-auto-props          : disable automatic properties
like image 89
pyfunc Avatar answered Nov 08 '22 14:11

pyfunc