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.
1 parent 13e0a9b commit ea026f0Copy full SHA for ea026f0
GitTfsPlugin.cs
@@ -33,20 +33,20 @@ public bool Execute(GitUIBaseEventArgs gitUiCommands)
33
{
34
if (string.IsNullOrEmpty(gitUiCommands.GitModule.GitWorkingDir))
35
36
- return true;
+ return false;
37
}
38
39
var remotes = GetTfsRemotes(gitUiCommands.GitUICommands);
40
41
if (remotes.Any())
42
43
new GitTfsDialog(gitUiCommands.GitUICommands, PluginSettings, remotes).ShowDialog();
44
- return false;
+ return true;
45
46
47
MessageBox.Show("The active repository has no TFS remotes.", "git-tfs Error",
48
MessageBoxButtons.OK, MessageBoxIcon.Error);
49
50
51
52
private static IEnumerable<string> GetTfsRemotes(IGitUICommands commands)
0 commit comments