All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] patman: implement 'reverse' in LogCmd()
@ 2014-08-23 20:28 Steve Rae
  2014-08-23 22:18 ` Simon Glass
  0 siblings, 1 reply; 2+ messages in thread
From: Steve Rae @ 2014-08-23 20:28 UTC (permalink / raw)
  To: u-boot

- add missing capability 'git log --reverse'

Signed-off-by: Steve Rae <srae@broadcom.com>
- a recent change (cda2a61) broke patman, the "Changes in v?" tags
  are being applied to the wrong commits!
END

---

 tools/patman/gitutil.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/patman/gitutil.py b/tools/patman/gitutil.py
index 735c8dd..6af6c2a 100644
--- a/tools/patman/gitutil.py
+++ b/tools/patman/gitutil.py
@@ -36,6 +36,8 @@ def LogCmd(commit_range, git_dir=None, oneline=False, reverse=False,
     cmd += ['log', '--no-color']
     if oneline:
         cmd.append('--oneline')
+    if reverse:
+        cmd.append('--reverse')
     if use_no_decorate:
         cmd.append('--no-decorate')
     if count is not None:
-- 
1.8.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] patman: implement 'reverse' in LogCmd()
  2014-08-23 20:28 [U-Boot] [PATCH] patman: implement 'reverse' in LogCmd() Steve Rae
@ 2014-08-23 22:18 ` Simon Glass
  0 siblings, 0 replies; 2+ messages in thread
From: Simon Glass @ 2014-08-23 22:18 UTC (permalink / raw)
  To: u-boot

Hi Steve,

On 23 August 2014 14:28, Steve Rae <srae@broadcom.com> wrote:
> - add missing capability 'git log --reverse'
>
> Signed-off-by: Steve Rae <srae@broadcom.com>
> - a recent change (cda2a61) broke patman, the "Changes in v?" tags
>   are being applied to the wrong commits!

Thanks for the patch. We already have one for this:

http://patchwork.ozlabs.org/patch/380068/

I'll organise a pull request soon and it will be fixed.

Regards,
Simon

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-08-23 22:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-23 20:28 [U-Boot] [PATCH] patman: implement 'reverse' in LogCmd() Steve Rae
2014-08-23 22:18 ` Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.