diff --git a/cli/src/main/java/com/devonfw/tools/ide/context/GitContext.java b/cli/src/main/java/com/devonfw/tools/ide/context/GitContext.java index 68327aeb9..bbd13def1 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/context/GitContext.java +++ b/cli/src/main/java/com/devonfw/tools/ide/context/GitContext.java @@ -19,7 +19,7 @@ public interface GitContext { * @param repoUrl the git remote URL to clone from. * @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch. * @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled. - * It is not the parent directory where git will by default create a sub-folder by default on clone but the * + * It is not the parent directory where git will by default create a sub-folder by default on clone but the * final folder that will contain the ".git" subfolder. * @throws CliOfflineException if offline and cloning is needed. */ @@ -30,7 +30,7 @@ public interface GitContext { * * @param repoUrl the git remote URL to clone from. * @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled. - * It is not the parent directory where git will by default create a sub-folder by default on clone but the * + * It is not the parent directory where git will by default create a sub-folder by default on clone but the * final folder that will contain the ".git" subfolder. * @throws CliOfflineException if offline and cloning is needed. */ @@ -44,7 +44,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository) * * @param repoUrl the git remote URL to clone from. * @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled. - * It is not the parent directory where git will by default create a sub-folder by default on clone but the * + * It is not the parent directory where git will by default create a sub-folder by default on clone but the * final folder that will contain the ".git" subfolder. * @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch. * @throws CliOfflineException if offline and cloning is needed. @@ -59,7 +59,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository, * * @param repoUrl the git remote URL to clone from. * @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled. - * It is not the parent directory where git will by default create a sub-folder by default on clone but the * + * It is not the parent directory where git will by default create a sub-folder by default on clone but the * final folder that will contain the ".git" subfolder. * @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch. * @param remoteName the remote name e.g. origin. @@ -72,7 +72,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository, * * @param gitRepoUrl the git remote URL to clone from. * @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled. - * It is not the parent directory where git will by default create a sub-folder by default on clone but the * + * It is not the parent directory where git will by default create a sub-folder by default on clone but the * final folder that will contain the ".git" subfolder. * @throws CliOfflineException if offline and cloning is needed. */ @@ -84,7 +84,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository, * @param gitRepoUrl the git remote URL to clone from. * @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch. * @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled. - * It is not the parent directory where git will by default create a sub-folder by default on clone but the * + * It is not the parent directory where git will by default create a sub-folder by default on clone but the * final folder that will contain the ".git" subfolder. * @throws CliOfflineException if offline and cloning is needed. */