The last release accidentially removed a number of options from the copy command. (-J, file matching options, etc). These have been added back.

This commit is contained in:
Joey Hess 2015-07-30 13:33:35 -04:00
parent 506452012c
commit b7a5d9c3e1
2 changed files with 7 additions and 3 deletions

View file

@ -15,9 +15,10 @@ import Annex.Wanted
import Annex.NumCopies
cmd :: Command
cmd = command "copy" SectionCommon
"copy content of files to/from another repository"
paramPaths (seek <--< optParser)
cmd = withGlobalOptions (jobsOption : annexedMatchingOptions) $
command "copy" SectionCommon
"copy content of files to/from another repository"
paramPaths (seek <--< optParser)
data CopyOptions = CopyOptions
{ moveOptions :: Command.Move.MoveOptions

3
debian/changelog vendored
View file

@ -3,6 +3,9 @@ git-annex (5.20150728) UNRELEASED; urgency=medium
* webapp: Support enabling known gitlab.com remotes.
* Fix rsync special remote to work when -Jn is used for concurrent
uploads.
* The last release accidentially removed a number of options from the
copy command. (-J, file matching options, etc). These have been added
back.
-- Joey Hess <id@joeyh.name> Mon, 27 Jul 2015 15:57:07 -0400