feat(git-settings): add support for shallow cloning in application settings

- Introduced a new boolean setting `is_git_shallow_clone_enabled` to the application settings model.
- Updated the `Advanced` component to include a checkbox for enabling shallow cloning.
- Modified the `setGitImportSettings` and `generateGitImportCommands` methods to handle shallow clone logic.
- Created a migration to add the new setting to the database schema.
- Enhanced the deployment process to utilize shallow cloning for improved performance.
This commit is contained in:
Andras Bacsai
2025-08-21 10:16:57 +02:00
parent d832abaa35
commit a6fc39e798
5 changed files with 57 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ class ApplicationSetting extends Model
'is_preview_deployments_enabled' => 'boolean',
'is_git_submodules_enabled' => 'boolean',
'is_git_lfs_enabled' => 'boolean',
'is_git_shallow_clone_enabled' => 'boolean',
];
protected $guarded = [];