* lisp/vc/vc-svn.el (vc-svn-clone): Add 'clone' implementation
authorPhilip Kaludercic <philipk@posteo.net>
Thu, 6 Oct 2022 15:04:31 +0000 (17:04 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Thu, 6 Oct 2022 20:03:15 +0000 (22:03 +0200)
lisp/vc/vc-svn.el

index 08b53a7169f815f3a3b6bf21474a74ce8103f127..cb50a37e09a4378137bf34aed15b7bfdf73263d0 100644 (file)
@@ -817,6 +817,9 @@ Set file properties accordingly.  If FILENAME is non-nil, return its status."
                       "info" "--show-item" "repos-root-url")
       (buffer-substring-no-properties (point-min) (1- (point-max))))))
 
+(defun vc-svn-clone (remote directory)
+  (vc-svn-command nil 0 '() "checkout" remove directory))
+
 (provide 'vc-svn)
 
 ;;; vc-svn.el ends here