Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-08-17 20:26:48 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-08-17 20:26:48 +0300
commit58dfdef147ee909229afdfdd2776dd335a1ee87d (patch)
tree731ef31d34a13a8f31e9a8c2cd0b43ce70d30b0e /main/src/addins/VersionControl
parent13f33098c2726372f17c05f3e5f5c47e958355ba (diff)
[VCS] Add two todos.
Diffstat (limited to 'main/src/addins/VersionControl')
-rw-r--r--main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs b/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs
index 69764a4bfd..3354be65e9 100644
--- a/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs
+++ b/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs
@@ -220,6 +220,8 @@ namespace MonoDevelop.VersionControl
var newPath = vcs.GetRepositoryPath (path, id);
if (!newPath.IsNullOrEmpty) {
// Check whether we have no match or if a new match is found with a longer path.
+ // TODO: If the repo root is not the same as the repo reference, ask user for input.
+ // TODO: If we have two version control directories in the same place, ask user for input.
if (bestMatch.IsNullOrEmpty) {
bestMatch = newPath;
detectedVCS = vcs;