Created
July 23, 2014 22:30
-
-
Save yveszoundi/1894d0e2062567bcbaf6 to your computer and use it in GitHub Desktop.
magit clone url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun magit-clone-url () | |
(interactive) | |
(let ((git-repo-url (read-from-minibuffer "Enter git repo URL: "))) | |
(magit-git-command (concat " clone " git-repo-url) | |
default-directory))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment