We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e303d4 commit aa1c8b1Copy full SHA for aa1c8b1
1 file changed
src/ViewModels/Histories.cs
@@ -237,9 +237,9 @@ public void DoubleTapped(Models.Commit commit)
237
if (remoteBranch != null)
238
{
239
// If there's a local branch that is tracking on this remote branch and it does not ahead of
240
- // its upstream, show `Create and Fast-Forward` popup.
+ // its upstream, show `Checkout and Fast-Forward` popup.
241
var localBranch = _repo.Branches.Find(x => x.IsLocal && x.Upstream == remoteBranch.FullName);
242
- if (localBranch is { TrackStatus: { Ahead: { Count: 0 } } })
+ if (localBranch is { TrackStatus.Ahead.Count: 0 })
243
244
if (_repo.CanCreatePopup())
245
_repo.ShowPopup(new CheckoutAndFastForward(_repo, localBranch, remoteBranch));
0 commit comments