From d5cbba927ba1e03eb96765bbd6ebef53caeb1b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arthur=20Colombini=20Gusm=C3=A3o?= Date: Thu, 5 Mar 2020 22:24:32 +0100 Subject: [PATCH] Fix rsync alias error Update documentation to prevent error `rsync: -oUseRoaming=no: unknown option` when using rsync with ssh-ident. Solution proposed by @fbicknel in https://github.com/ccontavalli/ssh-ident/issues/41 --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 1b7f719..f45e3e1 100644 --- a/README +++ b/README @@ -110,7 +110,7 @@ DESCRIPTION 2) Add a few more aliases in your .bashrc file, for example: alias scp='BINARY_SSH=scp /path/to/ssh-ident' - alias rsync='BINARY_SSH=rsync /path/to/ssh-ident' + alias rsync='SSH_DEFAULT_OPTIONS= BINARY_SSH=rsync /usr/local/bin/ssh-ident' ... The first alias will make the 'scp' command invoke 'ssh-ident' instead,