andras-simonyi/citeproc-el@9f783967c1 -> andras-simonyi/citeproc-el@ba49516265 bdarcus/citar@b24b5b94b7 -> bdarcus/citar@79512aefdf cjohansson/emacs-ssh-deploy@7c5fe8af2d -> cjohansson/emacs-ssh-deploy@9311f9b4f8 editorconfig/editorconfig-emacs@2ab86dc9a8 -> editorconfig/editorconfig-emacs@3c03cef311 emacs-lsp/lsp-mode@f49ea4e365 -> emacs-lsp/lsp-mode@cb7ec94435 joaotavora/eglot@dade5a1487 -> joaotavora/eglot@0f352213fc k1LoW/emacs-ansible@40af0d2bbb -> k1LoW/emacs-ansible@d89ac0ee57 magit/forge@0ff9b8a0de -> magit/forge@5586863f98 magit/magit@0ac05f3962 -> magit/magit@4e29d5827c paradoxxxzero/jinja2-mode@ecd19a40b7 -> paradoxxxzero/jinja2-mode@03e5430a7e purcell/envrc@456c4100de -> purcell/envrc@e161624b91 tmalsburg/helm-bibtex@aa775340ba -> tmalsburg/helm-bibtex@db73156576 tmalsburg/helm-bibtex@aa775340ba -> tmalsburg/helm-bibtex@db73156576 tumashu/posframe@6c0e63d6b3 -> tumashu/posframe@c91d4d53fa vedang/pdf-tools@4e6c778194 -> vedang/pdf-tools@72ef774320 zx2c4/password-store@04cd3023f4 -> zx2c4/password-store@eea24967a0
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/")