summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_rsync
AgeCommit message (Collapse)AuthorFilesLines
2024-08-0352989: _rsync: support rsync 3.2.4+ remote filename handling.Eric Cook1-1/+9
2023-11-2252315: completion options updateOliver Kiddle1-5/+10
2021-11-2449597: add a helper for completing numbers with unit suffixes and separate ↵Oliver Kiddle1-5/+5
out defaults, ranges and units in completion descriptions
2021-07-0949150: consistently use singular form for headings on completion match groupsOliver Kiddle1-2/+2
2021-06-0348939: update completion of options for rsync 3.2.3Oliver Kiddle1-15/+38
2020-01-0645231: _rsync: When completing remote modules, ignore more of the motd.Daniel Shahaf1-1/+2
We cannot use the --no-motd option because it inhibits the modules listing. We cannot look for a blank line because there will not be a blank line if the "motd file" does not end with a newline. Looking for tabs is an improvement. Any tabs in the motd will still cause extraneous matches, but there's nothing we can do about that. While here, show the modules in the order listed.
2018-03-3142572: various completion option updatesOliver Kiddle1-3/+6
2016-08-1939067: update options to correspond to latest versions of software in ↵Oliver Kiddle1-4/+19
various functions
2014-10-1433467: correct return status on functions and numerous other minor fixesOliver Kiddle1-2/+2
2014-08-1432998: completion function updatesOliver Kiddle1-1/+4
2013-10-06Add new options for rsync 3.1.0.Wayne Davison1-1/+12
2011-12-0929918: Completion: Add new _remote_files() helper and use it to reduce code ↵Simon Ruderich1-27/+1
duplication.
2011-09-0629739: _rsync: redefine _rsync(), -e takes cuddled argsMikael Magnusson1-141/+145
2009-12-13Fixed --human-readable options and arg-acceptance of -f.Wayne Davison1-3/+2
2009-04-1626829: Alexey I. Froloff: _rsync miscounts fieldsPeter Stephenson1-2/+5
2008-09-1325655: remove completion for --remove-sent-files option.Clint Adams1-1/+0
2008-03-0124632: fix remote ssh filename quoting.Clint Adams1-1/+5
2007-12-15Improved --whole-file description.Wayne Davison1-1/+1
2007-11-28One more rsync 3.0.0 option.Wayne Davison1-1/+2
2007-11-09Adding missed single-letter options for --acls and --xattrs.Wayne Davison1-3/+3
2007-11-05Added new options for upcoming 3.0.0 release.Wayne Davison1-7/+16
2006-10-24The final option changes for 2.6.9.Wayne Davison1-0/+3
2006-10-0322812: utilize _bind_addresses in existing completion functions.Clint Adams1-1/+1
2006-05-30Option changes for the upcoming 2.6.9 release.Wayne Davison1-1/+3
2006-02-28Added --no-H and --no-hard-links.Wayne Davison1-0/+1
2006-02-24Added --copy-dirlinks option.Wayne Davison1-0/+1
2006-02-19Added the missing -h option for --daemon mode.Wayne Davison1-1/+2
2006-02-07Added one last (I hope) new option for the imminent 2.6.7.Wayne Davison1-0/+1
2006-02-05- Fixed completion after using the -f option due to a trailing ':',Wayne Davison1-24/+23
so removed a bunch of trailing ':'s. - Use "_directories" for consistency. - Added some missing "_files" directives. - Added some default completions for a couple options.
2006-01-31Added one more new option for 2.6.7.Wayne Davison1-2/+3
2006-01-30Added options for upcoming 2.6.7 release.Wayne Davison1-11/+38
2005-07-29Reorder the --include/--include-from --exclude/--exclude-from linesWayne Davison1-2/+2
so that the completion system will properly complete files after the ...-from options (the completion system is buggy if the shorter option is first and ends with an '=').
2005-04-27- Changed the --include, --exclude, and --filter (-f) options soWayne Davison1-3/+4
that they can be specified multiple times. - Added the --only-write-batch=FILE option for the upcoming 2.6.5.
2005-04-05The --address option is useful in both client- and daemon-mode.Wayne Davison1-1/+1
2005-04-0321086: fix module completion (broken in previous patch) and other tweaksAndrey Borzenkov1-4/+6
2005-03-28Added --protocol option.Wayne Davison1-0/+1
2005-03-2621066: rsync:// support and more fixesAndrey Borzenkov1-18/+35
2005-03-11The --compare-dest, --link-dest, and (new) --copy-dest optionsWayne Davison1-2/+3
needed to allow duplication and to exclude each other.
2005-03-01Got rid of --copy-dest, which didn't make it into rsync 2.6.4.Wayne Davison1-1/+0
2005-02-20- Added a missing '=' to two commands that take args.Wayne Davison1-3/+3
- Removed the unintentional arg from --delay-updates.
2005-02-20Got rid of some of the specified option-conflicts between theWayne Davison1-7/+7
delete options -- I was using it to cut down on the useless suggestions, but it was failing to continue completing if the user specified something like "--delete-after --delete" (which is valid but superfluous). Also got rid of an accidental option-conflict between --archive (-a) and --recursive (-r).
2005-02-20Added the last 2 new options from the upcoming rsync 2.6.4.Wayne Davison1-0/+2
2005-02-15- Split the options up into two sets: daemon options, and clientWayne Davison1-34/+37
options. This makes sure that daemon options aren't offered after client options, and visa versa. - Added some missing exclusion-lists for options (that avoids offering conflicting options to the user). - Improved the description of a few options. - Added some new options for the upcoming rsync 2.6.4.
2005-01-28- Added new options for impending 2.6.4 release.Wayne Davison1-44/+51
- Improved the descriptions of several old options. - Got rid of the "-- ..." options to _arguments (so that we don't try to use the output of "rsync --help").
2004-10-13Added the 7 remaining options that were missing from the _argumentsWayne Davison1-0/+6
list.
2004-10-07Added the new options for 2.6.3 (only omitting --checksum-seed, whichWayne Davison1-2/+5
is an advanced option that is not needed by normal users).
2004-08-0720235: sync remote file completion against _ssh to fix bug with quote handlingOliver Kiddle1-25/+20
2004-04-14* Jay Berkenbilt: 19769: Completion/Unix/Command/_rsync:Clint Adams1-2/+2
fix quoting for remote file completion, add -L to ls command.
2003-11-1419244: various completion function fixes and updatesOliver Kiddle1-11/+11
2003-07-31tidy up of many completions (updates, fixes, improvements and plain aesthetics)Oliver Kiddle1-110/+83