Skip to content

Commit

Permalink
Merge pull request #22 from ufaks/fix_Multi_pull_request
Browse files Browse the repository at this point in the history
fix multi pull request
  • Loading branch information
Ivan Yelizariev committed Mar 17, 2016
2 parents 65b642d + 6cf4431 commit 68709d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/git/multi-pull-request.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Multi Pull Request
Find last merged point
----------------------

To find last commit ``origin/8.0`` and ``origin/9.0`` were merged, use following commands
To find last commit ``upstream/8.0`` and ``upstream/9.0`` were merged, use following commands

.. code-block:: shell
git fetch
git log origin/8.0..origin/9.0 --grep="Merge remote-tracking branch 'origin/8.0'" --merges -n 3
git log upstream/8.0..upstream/9.0 --grep="Merge remote-tracking branch 'origin/8.0'" --merges -n 3
# you will get something like that:
# commit 5cb3652be72a05330c3988d270f3aef548511b29
Expand Down

0 comments on commit 68709d6

Please sign in to comment.