Subversion
|
Functions | |
svn_error_t * | svn_client_resolved (const char *path, svn_boolean_t recursive, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Similar to svn_client_resolve(), but without automatic conflict resolution support. More... | |
svn_error_t * | svn_client_resolve (const char *path, svn_depth_t depth, svn_wc_conflict_choice_t conflict_choice, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Perform automatic conflict resolution on a working copy path. More... | |
svn_error_t* svn_client_resolve | ( | const char * | path, |
svn_depth_t | depth, | ||
svn_wc_conflict_choice_t | conflict_choice, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Perform automatic conflict resolution on a working copy path.
If conflict_choice is
svn_wc_conflict_choose_theirs_conflict and svn_wc_conflict_choose_mine_conflict are not legal for binary files or properties.
If path is not in a state of conflict to begin with, do nothing. If path's conflict state is removed and ctx->notify_func2 is non-NULL, call ctx->notify_func2 with ctx->notify_baton2 and path.
If depth is svn_depth_empty, act only on path; if svn_depth_files, resolve path and its conflicted file children (if any); if svn_depth_immediates, resolve path and all its immediate conflicted children (both files and directories, if any); if svn_depth_infinity, resolve path and every conflicted file or directory anywhere beneath it.
Note that this operation will try to lock the parent directory of path in order to be able to resolve tree-conflicts on path.
svn_error_t* svn_client_resolved | ( | const char * | path, |
svn_boolean_t | recursive, | ||
svn_client_ctx_t * | ctx, | ||
apr_pool_t * | pool | ||
) |
Similar to svn_client_resolve(), but without automatic conflict resolution support.
svn_wc_conflict_choose_merged
instead.