I would like to know how can I see the result of a command like git log ..some-branch in magit?
git log ..some-branch
From doc :
Providing the prefix argument l queries the start and end points of the story. This can be used to display commits that are in one branch, but not in another, for example. The starting point may also be a series of changes to "r1..r2". In this case, โr1โ is used as the beginning and โr2โ as the ending point of the story.
But I do not understand how I can give this prefix argument? Which key sequence should I use?
The prefix argument is specified using Cu . However, this is not like my magic. To get the ranking log, press "l", then go to "Ranged short" and press enter.
Cu l rl works for me: it asks for two refs that will determine the range.
In the current version of magit ( 2.11.0 since writing this), the log ranges can be displayed using l o ("log other"), and then enter the commit range (for example: HEAD~5..HEAD ).
2.11.0
HEAD~5..HEAD
Source: https://habr.com/ru/post/1447759/More articles:Can I use the Deferred object to create a callback after the for loop completes? - javascriptCSS sprite too big for iPhone - cssHow do you find where the print statement is? - pythonAndroid time in iso 8601 - androidPaging does not work properly - c #Mootools script will not work in Internet Explorer 7 - mootoolsSystem.Timer passed in a separate thread and supported thread restriction - c #How to call async method with some priority? - multithreadingWays to use rpc / encoded style in CXF - javaSearch for an MSB-set of a maximum element in an array - optimizationAll Articles