0

The standard approach is described here but I've already closed the push window, so I don't have a way to click Request pull button.

Is there any way to create a pull request on already pushed changes?

Kamil
  • 1,456
  • 4
  • 32
  • 50

1 Answers1

4

Just push again, Git will detect that there are no changes (if there are no changes push is idempotent) and then you can select Request pull.

MrTux
  • 32,350
  • 30
  • 109
  • 146
  • Yeah, you're right. I was used to do the push from `Git Sync` window and it didn't pop up any window with the `Request pull`. When I've chosen `Push...` from the context menu, the `Create pull request` was there. Thanks – Kamil Feb 21 '18 at 08:57