You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewLibGit2Exception(string.Format("Unable to move file '{0}'. Its current status is '{1}'.",keyValuePair.Key.Item1,Enum.GetName(typeof(FileStatus),keyValuePair.Key.Item2)));
278
+
thrownewLibGit2Exception(string.Format("Unable to move file '{0}'. Its current status is '{1}'.",sourcePath,Enum.GetName(typeof(FileStatus),sourceStatus)));
thrownewLibGit2Exception(string.Format("Unable to overwrite file '{0}'. Its current status is '{1}'.",keyValuePair.Value.Item1,Enum.GetName(typeof(FileStatus),keyValuePair.Value.Item2)));
287
+
thrownewLibGit2Exception(string.Format("Unable to overwrite file '{0}'. Its current status is '{1}'.",destPath,Enum.GetName(typeof(FileStatus),desStatus)));
255
288
}
256
289
257
290
stringwd=repo.Info.WorkingDirectory;
@@ -285,6 +318,9 @@ public void Remove(IEnumerable<string> paths)
285
318
{
286
319
Ensure.ArgumentNotNull(paths,"paths");
287
320
321
+
//TODO: Remove() should support following use cases:
0 commit comments