From: rearman Date: Thu, 28 Aug 2025 20:43:37 +0000 (-0400) Subject: Make vc clone work X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=2fc2629763e2a5707b8cab601483c83a523b18d3;p=emacsinit.git Make vc clone work Had wrong function and args --- diff --git a/re/re-vc-defuns.el b/re/re-vc-defuns.el index b0bd07e..e72d72b 100644 --- a/re/re-vc-defuns.el +++ b/re/re-vc-defuns.el @@ -9,7 +9,7 @@ Prompt for url and local dir." (interactive) (let* ((url (read-string "Repository URL: ")) (dir (read-string "Local Dir: " (file-name-base url)))) - (vc-clone url nil dir nil))) + (vc-git-clone url dir nil))) (defun re/vc-show-branches (&optional arg) "Display all Git branches in a separate buffer.