From 9a7b68570b79a78083eb0478bc0152a352e4642e Mon Sep 17 00:00:00 2001 From: Guillaume Bouvignies Date: Fri, 8 Dec 2023 18:20:07 +0100 Subject: [PATCH] chore: Updating git sync info (#2818) --- .../(root)/(logged)/workspace_settings/+page.svelte | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte b/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte index f02e3e975a..05fc4274af 100644 --- a/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte @@ -664,10 +664,11 @@ />
- Connect the Windmill workspace to a Git repository to automatically commit and push scripts, flows and apps to the repository on each deploy. + Connect the Windmill workspace to a Git repository to automatically commit and push + scripts, flows and apps to the repository on each deploy.
-
+
{#if !$enterpriseLicense} Automatically saving scripts to a Git repository on each deploy is a Windmill EE feature. @@ -677,6 +678,8 @@ All scripts, flows and apps located in the workspace will be pushed to the Git repository, except the ones that are saved in private user folders (i.e. where the path starts with `u/`, use those with `f/` instead). +
+ Filtering out certain sensitive folders from the sync will be available soon.
{#key s3ResourceInitialPath} @@ -717,8 +720,10 @@
> wmill workspace add WORKSPACE_NAME WORKSPACE_ID WINDMILL_URL
+> echo 'u/' > .wmillignore
 > wmill sync pull --raw --skip-variables --skip-secrets --skip-resources
-> git add -A git commit -m 'Initial commit'
+> git add -A
+> git commit -m 'Initial commit'
 > git push