-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added update property to push command
- Loading branch information
Dominik Przybyl
committed
Nov 12, 2024
1 parent
d843a8e
commit a0faffb
Showing
6 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<workspaceFilter version="1.0">[[if .ExcludePatterns]] | ||
<filter root="[[index .FilterRoots 0]]">[[range .ExcludePatterns]] | ||
<filter root="[[index .FilterRoots 0]]"[[if .FilterMode]] mode="[[.FilterMode]]"[[end]]>[[range .ExcludePatterns]] | ||
<exclude pattern="[[.]]"/>[[end]] | ||
</filter>[[else]][[range .FilterRoots]] | ||
<filter root="[[.]]"/>[[end]][[end]] | ||
<filter root="[[.]]"[[if $.FilterMode]] mode="[[$.FilterMode]]"[[end]]/>[[end]][[end]] | ||
</workspaceFilter> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<workspaceFilter version="1.0"> | ||
<filter root="/apps/my_site" mode="update"> | ||
<exclude pattern="/apps/my_site/cq:dialog(/.*)?"/> | ||
<exclude pattern="/apps/my_site/rep:policy(/.*)?"/> | ||
</filter> | ||
</workspaceFilter> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<workspaceFilter version="1.0"> | ||
<filter root="/apps/my_site" mode="update"/> | ||
<filter root="/content/my_site" mode="update"/> | ||
</workspaceFilter> |