We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git-bundle
Local Name
1 parent 4f08abd commit 67efe76Copy full SHA for 67efe76
src/ViewModels/Clone.cs
@@ -120,6 +120,9 @@ public override Task<bool> Sure()
120
var name = Path.GetFileName(_remote)!;
121
if (name.EndsWith(".git", StringComparison.Ordinal))
122
name = name.Substring(0, name.Length - 4);
123
+ else if (name.EndsWith(".bundle", StringComparison.Ordinal))
124
+ name = name.Substring(0, name.Length - 7);
125
+
126
path = Path.GetFullPath(Path.Combine(path, name));
127
}
128
0 commit comments