You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2019/01/08 10:24:17 UTC

svn commit: r1850722 - /subversion/trunk/subversion/include/private/svn_client_private.h

Author: julianfoad
Date: Tue Jan  8 10:24:16 2019
New Revision: 1850722

URL: http://svn.apache.org/viewvc?rev=1850722&view=rev
Log:
* subversion/include/private/svn_client_private.h
  (svn_client__wc_copy_mods): Add a doc string.

Modified:
    subversion/trunk/subversion/include/private/svn_client_private.h

Modified: subversion/trunk/subversion/include/private/svn_client_private.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_client_private.h?rev=1850722&r1=1850721&r2=1850722&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_client_private.h (original)
+++ subversion/trunk/subversion/include/private/svn_client_private.h Tue Jan  8 10:24:16 2019
@@ -529,6 +529,16 @@ svn_client__wc_replay(const char *src_wc
                       svn_client_ctx_t *ctx,
                       apr_pool_t *scratch_pool);
 
+/** Copy local modifications from one WC subtree to another.
+ *
+ * Find local modifications under @a src_wc_abspath, in the same way as
+ * for a commit.
+ *
+ * Edit the WC at @a dst_wc_abspath, applying those modifications to the
+ * current working state to produce a new working state.
+ * 
+ * The source and destination may be in the same WC or in different WCs.
+ */
 svn_error_t *
 svn_client__wc_copy_mods(const char *src_wc_abspath,
                          const char *dst_wc_abspath,