Functions | |
svn_error_t * | svn_client_revert2 (const apr_array_header_t *paths, svn_depth_t depth, const apr_array_header_t *changelists, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Restore the pristine version of a working copy paths, effectively undoing any local mods. | |
svn_error_t * | svn_client_revert (const apr_array_header_t *paths, svn_boolean_t recursive, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_revert2(), but with changelists passed as NULL , and depth set according to recurse: if recurse is TRUE, depth is svn_depth_infinity , else if recurse is FALSE, depth is svn_depth_empty . |
|
Similar to svn_client_revert2(), but with changelists passed as
|
|
Restore the pristine version of a working copy paths, effectively undoing any local mods. For each path in paths, revert it if it is a file. Else if it is a directory, revert according to depth:
If depth is
changelists is an array of If ctx->notify_func2 is non-NULL, then for each item reverted, call ctx->notify_func2 with ctx->notify_baton2 and the path of the reverted item.
If an item specified for reversion is not under version control, then do not error, just invoke ctx->notify_func2 with ctx->notify_baton2, using notification code
|