Skip to content

Commit 7a9ad5f

Browse files
author
Nathan Roe
committed
Updated calls to fetch for latest git-tfs command line interface
1 parent dc6d426 commit 7a9ad5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GitTfsDialog.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ private void PullButtonClick(object sender, EventArgs e)
7474
else if (RebaseRadioButton.Checked)
7575
{
7676
_settings.PullSetting = PullSetting.Rebase;
77-
_commands.StartGitTfsCommandProcessDialog("fetch", TfsRemoteComboBox.Text);
77+
_commands.StartGitTfsCommandProcessDialog("fetch", "--remote " + TfsRemoteComboBox.Text);
7878
_commands.StartRebaseDialog("tfs/" + TfsRemoteComboBox.Text);
7979
}
8080
else if (FetchRadioButton.Checked)
8181
{
8282
_settings.PullSetting = PullSetting.Fetch;
83-
_commands.StartGitTfsCommandProcessDialog("fetch", TfsRemoteComboBox.Text);
83+
_commands.StartGitTfsCommandProcessDialog("fetch", "--remote " + TfsRemoteComboBox.Text);
8484
}
8585
}
8686

0 commit comments

Comments
 (0)