commit 45b0e763644391ad8e51d50e54af026371912180 from: Omar Polo date: Mon Dec 07 09:11:53 2020 UTC typo in vc-got-pull it still doesn't work, but at least now it invokes the correct subcommand. commit - a8466f02b7ba1629018f58c08c73d4fb2368c247 commit + 45b0e763644391ad8e51d50e54af026371912180 blob - 42a2b5dd0901101ad9646e1585da159be2e5912a blob + ca9dc0137c07612b091c240f8de069f91aeca788 --- vc-got.el +++ vc-got.el @@ -428,10 +428,10 @@ DIR-OR-FILE." (buffer (format "*vc-got : %s*" (expand-file-name root)))) (when-let (cmd (if prompt (split-string - (read-shell-command "Got pull command: " "got pull") + (read-shell-command "Got pull command: " "got fetch") " " t) - '("got" "pull"))) - (vc-do-command buffer 0 vc-got-cmd nil (cdr cmd))))) + '("got" "fetch"))) + (apply #'vc-do-command buffer 0 vc-got-cmd nil (cdr cmd))))) (defun vc-got-print-log (files buffer &optional _shortlog start-revision limit) "Insert the revision log for FILES into BUFFER.