-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add option to disable recurse submodules #1563
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
Merged
Siumauricio
merged 9 commits into
Dokploy:canary
from
yusoofsh:add-disable-recurse-submodules-option
Apr 26, 2025
Merged
Add option to disable recurse submodules #1563
Siumauricio
merged 9 commits into
Dokploy:canary
from
yusoofsh:add-disable-recurse-submodules-option
Apr 26, 2025
Conversation
This file contains hidden or 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
Add option to disable recurse submodules under "Provider Select the source of your code" form. * Add a checkbox to disable recurse submodules in `apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx`, `apps/dokploy/components/dashboard/application/general/generic/save-github-provider.tsx`, and `apps/dokploy/components/dashboard/application/general/generic/save-gitlab-provider.tsx`. * Update the form schema in the above files to include the new option. * Conditionally include the `--recurse-submodules` flag in the `git clone` command in the above files. * Update the "Provider Select the source of your code" form in `apps/dokploy/components/dashboard/application/general/generic/show.tsx` to include the new option. * Conditionally include the `--recurse-submodules` flag in the `git clone` command in `packages/server/src/utils/providers/bitbucket.ts`, `packages/server/src/utils/providers/git.ts`, `packages/server/src/utils/providers/github.ts`, and `packages/server/src/utils/providers/gitlab.ts`. * Add the `--depth` flag to optimize submodule cloning performance in the `git clone` command in `packages/server/src/utils/providers/bitbucket.ts`, `packages/server/src/utils/providers/git.ts`, `packages/server/src/utils/providers/github.ts`, and `packages/server/src/utils/providers/gitlab.ts`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/Dokploy/dokploy?shareId=XXXX-XXXX-XXXX-XXXX).
Contributor
|
@yusoofsh Can you check the errors on the ci/cd? |
Contributor
|
Can you also pull the changes from canary and recreate the migrations since we added gitea provider? |
…se-submodules-option
…ents and update database schema. This change introduces a new boolean field `enableSubmodules` to control submodule behavior in Git operations, replacing the previous `recurseSubmodules` field. Updates include modifications to the UI components, API routers, and database schema to accommodate this new feature.
…modules` field. This update includes the integration of a switch component in the UI and updates to the test files to reflect the new feature.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add option to disable recurse submodules under "Provider Select the source of your code" form.
apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx,apps/dokploy/components/dashboard/application/general/generic/save-github-provider.tsx, andapps/dokploy/components/dashboard/application/general/generic/save-gitlab-provider.tsx.--recurse-submodulesflag in thegit clonecommand in the above files.apps/dokploy/components/dashboard/application/general/generic/show.tsxto include the new option.--recurse-submodulesflag in thegit clonecommand inpackages/server/src/utils/providers/bitbucket.ts,packages/server/src/utils/providers/git.ts,packages/server/src/utils/providers/github.ts, andpackages/server/src/utils/providers/gitlab.ts.--depthflag to optimize submodule cloning performance in thegit clonecommand inpackages/server/src/utils/providers/bitbucket.ts,packages/server/src/utils/providers/git.ts,packages/server/src/utils/providers/github.ts, andpackages/server/src/utils/providers/gitlab.ts.For more details, open the Copilot Workspace session.