Subversion
|
Functions | |
svn_error_t * | svn_client_switch3 (svn_revnum_t *result_rev, const char *path, const char *url, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_boolean_t ignore_ancestry, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Switch an existing working copy directory to a different repository location. More... | |
svn_error_t * | svn_client_switch2 (svn_revnum_t *result_rev, const char *path, const char *url, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_switch3() but with ignore_ancestry always set to TRUE. More... | |
svn_error_t * | svn_client_switch (svn_revnum_t *result_rev, const char *path, const char *url, const svn_opt_revision_t *revision, svn_boolean_t recurse, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_switch2() but with allow_unver_obstructions, ignore_externals, and depth_is_sticky always set to FALSE, and depth set according to recurse: if recurse is TRUE, set depth to svn_depth_infinity, if recurse is FALSE, set depth to svn_depth_files. More... | |
svn_error_t* svn_client_switch | ( | svn_revnum_t * | result_rev, |
const char * | path, | ||
const char * | url, | ||
const svn_opt_revision_t * | revision, | ||
svn_boolean_t | recurse, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Similar to svn_client_switch2() but with allow_unver_obstructions, ignore_externals, and depth_is_sticky always set to FALSE, and depth set according to recurse: if recurse is TRUE, set depth to svn_depth_infinity, if recurse is FALSE, set depth to svn_depth_files.
svn_error_t* svn_client_switch2 | ( | svn_revnum_t * | result_rev, |
const char * | path, | ||
const char * | url, | ||
const svn_opt_revision_t * | peg_revision, | ||
const svn_opt_revision_t * | revision, | ||
svn_depth_t | depth, | ||
svn_boolean_t | depth_is_sticky, | ||
svn_boolean_t | ignore_externals, | ||
svn_boolean_t | allow_unver_obstructions, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Similar to svn_client_switch3() but with ignore_ancestry always set to TRUE.
svn_error_t* svn_client_switch3 | ( | svn_revnum_t * | result_rev, |
const char * | path, | ||
const char * | url, | ||
const svn_opt_revision_t * | peg_revision, | ||
const svn_opt_revision_t * | revision, | ||
svn_depth_t | depth, | ||
svn_boolean_t | depth_is_sticky, | ||
svn_boolean_t | ignore_externals, | ||
svn_boolean_t | allow_unver_obstructions, | ||
svn_boolean_t | ignore_ancestry, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Switch an existing working copy directory to a different repository location.
This is normally used to switch a working copy directory over to another line of development, such as a branch or a tag. Switching an existing working copy directory is more efficient than checking out url from scratch.
[out] | result_rev | If non-NULL, the value of the revision to which the working copy was actually switched. |
[in] | path | The directory to be switched. This need not be the root of a working copy. |
[in] | url | The repository URL to switch to. |
[in] | peg_revision | The peg revision. |
[in] | revision | The operative revision. |
[in] | depth | The depth of the operation. If svn_depth_infinity, switch fully recursively. Else if svn_depth_immediates, switch path and its file children (if any), and switch subdirectories but do not update them. Else if svn_depth_files, switch just file children, ignoring subdirectories completely. Else if svn_depth_empty, switch just path and touch nothing underneath it. |
[in] | depth_is_sticky | If TRUE , and depth is not svn_depth_unknown, then in addition to switching path, also set its sticky ambient depth value to depth. |
[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] | ignore_ancestry | If FALSE , then verify that the file or directory at path shares some common version control ancestry with the switch URL location (represented by the combination of url, peg_revision, and revision), and returning SVN_ERR_CLIENT_UNRELATED_RESOURCES if they do not. If TRUE , no such sanity checks are performed. |
[in] | ctx | The standard client context, used for authentication and notification. The notifier is invoked for paths affected by the switch, and also for files which may be restored from the pristine store after being previously removed from the working copy. |
[in] | pool | Used for any temporary allocation. |