Silex/docker.el@bc2dc09 -> Silex/docker.el@9bcefbe cjohansson/emacs-ssh-deploy@fce4ea3 -> cjohansson/emacs-ssh-deploy@7c5fe8a emacs-lsp/dap-mode@4347846 -> emacs-lsp/dap-mode@01d9297 emacs-lsp/lsp-mode@9aa22de -> emacs-lsp/lsp-mode@aec8968 emacs-lsp/lsp-ui@9953a48 -> emacs-lsp/lsp-ui@cb02972 emacs-pe/docker-tramp.el@8e2b671 -> emacs-pe/docker-tramp.el@aaee11c emacsorphanage/terraform-mode@a9fa5bd -> emacsorphanage/terraform-mode@e560caa jacktasia/dumb-jump@8f70acb -> jacktasia/dumb-jump@542e72d joaotavora/eglot@a5b7b7d -> joaotavora/eglot@5cc8df6 magit/forge@551e515 -> magit/forge@b4fd066 magit/magit@b68a760 -> magit/magit@9b7b25f tumashu/posframe@739d8fd -> tumashu/posframe@f97c4af xuchunyang/osx-dictionary.el@4d4cc19 -> xuchunyang/osx-dictionary.el@1a4479d zx2c4/password-store@4e73cdc -> zx2c4/password-store@3dd1469
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-explicit-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/")