Subversion
|
Functions | |
svn_error_t * | svn_client_relocate2 (const char *wcroot_dir, const char *from_prefix, const char *to_prefix, svn_boolean_t ignore_externals, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Recursively modify a working copy rooted at wcroot_dir, changing any repository URLs that begin with from_prefix to begin with to_prefix instead. More... | |
svn_error_t * | svn_client_relocate (const char *dir, const char *from_prefix, const char *to_prefix, svn_boolean_t recurse, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_relocate2(), but with ignore_externals always TRUE. More... | |
svn_error_t* svn_client_relocate | ( | const char * | dir, |
const char * | from_prefix, | ||
const char * | to_prefix, | ||
svn_boolean_t | recurse, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Similar to svn_client_relocate2(), but with ignore_externals always TRUE.
svn_error_t* svn_client_relocate2 | ( | const char * | wcroot_dir, |
const char * | from_prefix, | ||
const char * | to_prefix, | ||
svn_boolean_t | ignore_externals, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Recursively modify a working copy rooted at wcroot_dir, changing any repository URLs that begin with from_prefix to begin with to_prefix instead.
wcroot_dir | Working copy root directory |
from_prefix | Original URL |
to_prefix | New URL |
ignore_externals | If not set, recurse into external working copies after relocating the primary working copy |
ctx | svn_client_ctx_t |
pool | The pool from which to perform memory allocations |