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: utils/cliutils/commandsflags.go
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -564,6 +564,7 @@ const (
564
564
ExcludeRepos="exclude-repos"
565
565
IncludeProjects="include-projects"
566
566
ExcludeProjects="exclude-projects"
567
+
IncludeFiles="include-files"
567
568
568
569
// *** JFrog Pipelines Commands' flags ***
569
570
// Base flags
@@ -1607,6 +1608,10 @@ var flagsMap = map[string]cli.Flag{
1607
1608
Name: ExcludeProjects,
1608
1609
Usage: "[Optional] List of semicolon-separated(;) JFrog Projects to exclude from the transfer. You can use wildcards to specify patterns for the project keys.` `",
1609
1610
},
1611
+
IncludeFiles: cli.StringFlag{
1612
+
Name: IncludeFiles,
1613
+
Usage: "[Optional] List of semicolon-separated(;) path patterns to include in the transfer. Files will be filtered based on their directory path. Pattern examples: 'folder/subfolder/*', 'org/company/*'.` `",
1614
+
},
1610
1615
IgnoreState: cli.BoolFlag{
1611
1616
Name: IgnoreState,
1612
1617
Usage: "[Default: false] Set to true to ignore the saved state from previous transfer-files operations.` `",
@@ -2035,7 +2040,7 @@ var commandFlags = map[string][]string{
0 commit comments