diff --git a/src/ViewModels/Clone.cs b/src/ViewModels/Clone.cs index 94a74893..c6f09d24 100644 --- a/src/ViewModels/Clone.cs +++ b/src/ViewModels/Clone.cs @@ -120,6 +120,9 @@ namespace SourceGit.ViewModels var name = Path.GetFileName(_remote)!; if (name.EndsWith(".git", StringComparison.Ordinal)) name = name.Substring(0, name.Length - 4); + else if (name.EndsWith(".bundle", StringComparison.Ordinal)) + name = name.Substring(0, name.Length - 7); + path = Path.GetFullPath(Path.Combine(path, name)); }