Subversion
|
Functions | |
svn_error_t * | svn_client_checkout3 (svn_revnum_t *result_rev, const char *URL, const char *path, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Checkout a working copy from a repository. More... | |
svn_error_t * | svn_client_checkout2 (svn_revnum_t *result_rev, const char *URL, const char *path, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_boolean_t recurse, svn_boolean_t ignore_externals, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_checkout3() but with allow_unver_obstructions always set to FALSE, and depth set according to recurse: if recurse is TRUE, depth is svn_depth_infinity, if recurse is FALSE, depth is svn_depth_files. More... | |
svn_error_t * | svn_client_checkout (svn_revnum_t *result_rev, const char *URL, const char *path, const svn_opt_revision_t *revision, svn_boolean_t recurse, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_checkout2(), but with peg_revision always set to svn_opt_revision_unspecified and ignore_externals always set to FALSE. More... | |
svn_error_t* svn_client_checkout | ( | svn_revnum_t * | result_rev, |
const char * | URL, | ||
const char * | path, | ||
const svn_opt_revision_t * | revision, | ||
svn_boolean_t | recurse, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Similar to svn_client_checkout2(), but with peg_revision always set to svn_opt_revision_unspecified and ignore_externals always set to FALSE.
svn_error_t* svn_client_checkout2 | ( | svn_revnum_t * | result_rev, |
const char * | URL, | ||
const char * | path, | ||
const svn_opt_revision_t * | peg_revision, | ||
const svn_opt_revision_t * | revision, | ||
svn_boolean_t | recurse, | ||
svn_boolean_t | ignore_externals, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Similar to svn_client_checkout3() but with allow_unver_obstructions always set to FALSE, and depth set according to recurse: if recurse is TRUE, depth is svn_depth_infinity, if recurse is FALSE, depth is svn_depth_files.
svn_error_t* svn_client_checkout3 | ( | svn_revnum_t * | result_rev, |
const char * | URL, | ||
const char * | path, | ||
const svn_opt_revision_t * | peg_revision, | ||
const svn_opt_revision_t * | revision, | ||
svn_depth_t | depth, | ||
svn_boolean_t | ignore_externals, | ||
svn_boolean_t | allow_unver_obstructions, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Checkout a working copy from a repository.
[out] | result_rev | If non-NULL, the value of the revision checked out from the repository. |
[in] | URL | The repository URL of the checkout source. |
[in] | path | The root of the new working copy. |
[in] | peg_revision | The peg revision. |
[in] | revision | The operative revision. |
[in] | depth | The depth of the operation. If svn_depth_unknown, then behave as if for svn_depth_infinity, except in the case of resuming a previous checkout of path (i.e., updating), in which case use the depth of the existing working copy. |
[in] | ignore_externals | If TRUE , don't process externals definitions as part of this operation. |
[in] | allow_unver_obstructions | If TRUE , then tolerate existing unversioned items that obstruct incoming paths. Only obstructions of the same type (file or dir) as the added item are tolerated. The text of obstructing files is left as-is, effectively treating it as a user modification after the checkout. Working properties of obstructing items are set equal to the base properties. If FALSE , then abort if there are any unversioned obstructing items. |
[in] | ctx | The standard client context, used for authentication and notification. |
[in] | pool | Used for any temporary allocation. |