<div dir="ltr"><div><div><div>Hi, Jaroslaw!<br><br></div>I usually use the git cherry command to find out what commits are not yet ported. It uses some nice commit-diff algorithm so unless the commit was modified while cherry-picking it'll be reported correctly.<br>
<br></div>git cherry -v HEAD origin/master<br><br>I usually combine it with emacs and it's 'hl-line-mode' and 'scroll-lock-mode' like this:<br><br>git cherry -v HEAD origin/master | pipeemacs<br><br></div>
where pipemacs is a tiny script (for some reason emacs-x11 cannot read from the stdin):<br><div><div><div>
<br>#!/bin/sh<br>TMP=$(mktemp)<br>cat > $TMP<br>if cat $TMP | grep "diff --git" > /dev/null;  then<br>    mv $TMP $TMP.diff;<br>    TMP=$TMP.diff;<br>fi<br>emacs-x11 $TMP<br>rm $TMP<br><br><br><br></div></div>
</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Mar 4, 2014 at 1:43 AM, Jaroslaw Staniek <span dir="ltr"><<a href="mailto:staniek@kde.org" target="_blank">staniek@kde.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">And the script...<br>
<br>_______________________________________________<br>
calligra-devel mailing list<br>
<a href="mailto:calligra-devel@kde.org">calligra-devel@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/calligra-devel" target="_blank">https://mail.kde.org/mailman/listinfo/calligra-devel</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Dmitry Kazakov
</div>