* lisp/vc/vc-svn.el (vc-svn-clone): Add 'clone' implementation

This commit is contained in:
Philip Kaludercic 2022-10-06 17:04:31 +02:00
parent 132e4fbbcb
commit b6132d84e9
No known key found for this signature in database
GPG key ID: F2C3CC513DB89F66

View 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