abo-abo/define-word@08c71b1 -> abo-abo/define-word@3af6825 brotzeit/helm-xref@6b4a8bd) -> brotzeit/helm-xref@23f1174) charignon/github-review@fab440a -> charignon/github-review@e2123cc cjohansson/emacs-ssh-deploy@1bb2f82 -> cjohansson/emacs-ssh-deploy@cc91b56 editorconfig/editorconfig-emacs@9bc1343 -> editorconfig/editorconfig-emacs@a6c70da emacs-lsp/dap-mode@4b18543 -> emacs-lsp/dap-mode@400ec52 emacs-lsp/lsp-mode@65034e1 -> emacs-lsp/lsp-mode@fb4c35c emacsorphanage/quickrun@ce7383c -> emacsorphanage/quickrun@005d269 jacktasia/dumb-jump@0d74b2f -> jacktasia/dumb-jump@fbbe6b0 k1LoW/emacs-ansible@b5ef594 -> k1LoW/emacs-ansible@cf6b8f0 magit/forge@feee7e2 -> magit/forge@031e4f0 magit/magit@321214c -> magit/magit@2fb3bf7 millejoh/emacs-ipython-notebook@99a4718 -> millejoh/emacs-ipython-notebook@1bfb80c purcell/envrc@1dc5aad -> purcell/envrc@da8e306 realgud/realgud@332d136 -> realgud/realgud@ff66001 tumashu/posframe@7b92a54 -> tumashu/posframe@a99da9f
tools/upload
Description
Uses ssh-deploy
to map a local folder to a remote one.
From the ssh-deploy README:
The ssh-deploy plug-in for Emacs makes it possible to effortlessly deploy local files and directories to remote hosts via Tramp (including but not limited to SSH, SFTP, FTP). It tries to provide functions that can be easily used by custom scripts.
The idea for this plug-in was to mimic the behavior of PhpStorm deployment functionality.
Maintainers
This module has no dedicated maintainers.
Module Flags
This module provides no flags.
Plugins
Prerequisites
This module has no prerequisites.
Features
Uses ssh-deploy
to map a local folder to a remote one. Set
ssh-deploy-root-remote
and ssh-deploy-root-local
in a .dir-locals.el file
to establish this mapping.
Example:
((nil . ((ssh-deploy-root-local . "/local/path/to/project")
(ssh-deploy-root-remote . "/ssh:user@server:/remote/project/")
(ssh-deploy-on-explicity-save . t))))
Note: ssh-deploy-root-local
is optional, and will resort to
doom-project-root
if unspecified.
TODO Configuration
Check out Deployment configuration examples for some ideas of what's possible.
Troubleshooting
root-local
and root-remote
must match
The final directory names much match
((nil . ((ssh-deploy-root-local . "/local/path/to/example-project")
(ssh-deploy-root-remote . "/ssh:user@server:/remote/example-project/")