You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -180,6 +180,8 @@ cometx copy examples:
180
180
```
181
181
cometx copy SOURCE DESTINATION
182
182
cometx copy --symlink SOURCE DESTINATION
183
+
cometx copy --path /base/path SOURCE DESTINATION
184
+
cometx copy --path ~/Downloads SOURCE DESTINATION
183
185
```
184
186
185
187
where SOURCE is:
@@ -232,6 +234,23 @@ Not all combinations are possible:
232
234
*`--quiet` - If given, don't display update info
233
235
*`--symlink` - Instead of copying, create a link to an experiment in a project
234
236
*`--sync` - Check to see if experiment name has been created first; if so, skip
237
+
*`--path PATH` - Path to prepend to workspace_src when accessing files (supports ~ for home directory)
238
+
239
+
### Using --path
240
+
241
+
The `--path` option allows you to specify a base directory where your workspace folders are located. This is useful when your downloaded experiments are stored in a specific directory structure.
242
+
243
+
Examples:
244
+
```bash
245
+
# Copy from experiments in /data/experiments/workspace
0 commit comments