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 dc6d426 commit 7a9ad5fCopy full SHA for 7a9ad5f
GitTfsDialog.cs
@@ -74,13 +74,13 @@ private void PullButtonClick(object sender, EventArgs e)
74
else if (RebaseRadioButton.Checked)
75
{
76
_settings.PullSetting = PullSetting.Rebase;
77
- _commands.StartGitTfsCommandProcessDialog("fetch", TfsRemoteComboBox.Text);
+ _commands.StartGitTfsCommandProcessDialog("fetch", "--remote " + TfsRemoteComboBox.Text);
78
_commands.StartRebaseDialog("tfs/" + TfsRemoteComboBox.Text);
79
}
80
else if (FetchRadioButton.Checked)
81
82
_settings.PullSetting = PullSetting.Fetch;
83
84
85
86
0 commit comments