On Mon, Jul 11, 2011 at 09:15:40AM +0200, Sebastien girard wrote:
> Hello,
>
> I want to import a C project in my depository, but the libraries are not
> imported (e.g. libName.a), do you know why?
> Thank you for your help.
You need to tweak the global-ignores option in your client configuration
file. See http://svnbook.red-bean.com/nightly/en/svn.advanced.confarea.html
The relevant bit of the file looks as follows.
The default ignore list is shown, which includes *.a.
### Section for configuring miscelleneous Subversion options.
[miscellany]
### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories.
### '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'.
# global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo
# *.rej *~ #*# .#* .*.swp .DS_Store
Received on 2011-07-11 15:51:34 CEST