[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Issue #2105 - Add "--no-ignore" option to 'svn add' and 'svn import'

From: S.Ramaswamy <ramaswamy_at_collab.net>
Date: 2005-05-18 08:36:06 CEST

Log:

Fix issue #2105. Add "--no-ignore" switch to 'svn import' and 'svn add'

* subversion/include/svn_client.h
    (svn_client_import) : Marked function as deprecated.
    (svn_client_import2) : Added prototype for new function and doc
      string.
    (svn_client_add2) : Marked function as deprecated.
    (svn_client_add3) : Added prototype for new function and doc
      string.

* subversion/libsvn_client/commit.c
    (svn_client_import) : Re-implemented in terms of new function,
      'svn_client_import2()'.
    (svn_client_import2) : New function. Same as the older function
      'svn_client_import()' except for the additional boolean
      parameter 'no_ignore'. Setting 'no_ignore' to TRUE results
      in files and directories that match ignore patterns to be
      imported.
    (import_dir) : Added parameter 'no_ignore' to function.
      Calling 'import_dir()' with 'no_ignore' set to TRUE results
      in files directories that match ignore patterns to be imported.
    (import) : Added parameter 'no_ignore' to function.
       Calling 'import()' with 'no_ignore' set to TRUE results
       in files and directories that match ignore patterns to be
       imported.

* subversion/libsvn_client/add.c
    (svn_client_add) : Modified to call 'add()' with 'no_ignore'
      always set to FALSE.
    (svn_client_add2) : Re-implemented in terms of new function
      'svn_client_add3()'.
    (svn_client_add3) : New function. Same as the older function
      'svn_client_add2()' except for the additional boolean
      parameter 'no_ignore'. Setting 'no_ignore' to TRUE results
      in files and directories that match default ignore patterns
      to be be added during recursive directory adds.
    (add) : Added boolean parameter 'no_ignore' to function and pass
      this additional parameter to 'add_dir_recursive()'
    (add_dir_recursive) : Added boolean parameter 'no_ignore' to
      function. Files and directories that match default ignore
      patterns are ignored if no_ignore is TRUE.

* subversion/clients/cmdline/import-cmd.c
    (svn_cl__import) : Modified to call the new function
      'svn_client_import2()'.

* subversion/clients/cmdline/main.c
    (svn_cl__cmd_table) : Added '--no-ignore' command line option to
      'svn import' and 'svn add'.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Received on Wed May 18 08:38:34 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.