Add modules/tools/upload

This commit is contained in:
Henrik Lissner 2017-02-19 18:54:32 -05:00
parent 7c73c2c5cd
commit 6e7f686604
3 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,34 @@
;;; extra/upload/autoload.el
;;;###autoload
(defun +upload/local (&optional force-p)
"TODO"
(interactive)
(if force-p
(ssh-deploy-upload-handler-forced)
(ssh-deploy-upload-handler)))
;;;###autoload
(defun +upload/remote-download ()
"TODO"
(interactive)
(ssh-deploy-download-handler))
;;;###autoload
(defun +upload/diff ()
"TODO"
(interactive)
(ssh-deploy-diff-handler))
;;;###autoload
(defun +upload/browse ()
"TODO"
(interactive)
(ssh-deploy-browse-remove-handler))
;;;###autoload
(defun +upload/check-remote ()
"TODO"
(interactive)
(ssh-deploy-remote-changes-handler))