-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Final set of edits #643
Final set of edits #643
Changes from 1 commit
2aaca9f
deca629
72383da
cadc4e3
f93aab2
97ea80f
0c7d699
0ce9b0b
d853ade
3419340
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,7 +171,7 @@ const showJobsCmdShortDescription = "Show detailed information for the given job | |
|
||
const showJobsCmdLongDescription = ` | ||
If you provide only a job ID, and not a flag, then this command returns the progress summary only. | ||
The byte counts and percent complete that appears when you run this command don't reflect files related to jobs that are currently in progress. | ||
The byte counts and percent complete that appears when you run this command reflect only files that are completed in the job. They don't reflect partially completed files. | ||
If you set the with-status flag, then only the list of transfers associated with the given status appear.` | ||
normesta marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
const resumeJobsCmdShortDescription = "Resume the existing job with the given job ID." | ||
|
@@ -325,6 +325,7 @@ The sync command differs from the copy command in several ways: | |
2. The source and destination should not contain patterns (For example: * or ?). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zezha-msft this is incorrect information. (# 1) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The term "subdirectory" has no hyphen. Other than that, I've updated the text with your suggestion. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure what's happening here: the old # 1 (the one about source and destination should not contain patterns) is indeed obsolete and should have been removed. Because now both copy and sync are the same in that regard. (I.e. it should not be the new # 2, it should be gone). But I think its important that the new # 1, should start with "The recursive flag is on by default", since this is indeed the opposite of what copy does. E.g "1. The recursive flag is on by default. " |
||
3. The include-pattern and exclude-pattern flags can be a list of patterns matching to the file names. Please refer to the example section for illustration. | ||
normesta marked this conversation as resolved.
Show resolved
Hide resolved
|
||
4. When syncing between virtual directories, add a trailing slash to the path (refer to examples) if there's a blob with the same name as one of the virtual directories. | ||
5. If the 'deleteDestination' flag is set to true or prompt, then sync will delete files and blobs at the destination that are not present at the source. | ||
|
||
Advanced: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice wording. Way better than anything I've had in emails and discussions on this feature!