Bug 28601

Summary: bugzilla-tool post-commits posts commits backwards
Product: WebKit Reporter: Adam Barth <abarth>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: ddkilzer, eric, mrowe
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Patch v1 abarth: review+

Description Adam Barth 2009-08-20 22:39:08 PDT
See https://bugs.webkit.org/show_bug.cgi?id=24696
Comment 1 David Kilzer (:ddkilzer) 2009-08-20 22:49:30 PDT
Committed as http://trac.webkit.org/changeset/47563
Comment 2 David Kilzer (:ddkilzer) 2009-08-20 22:50:44 PDT
(In reply to comment #1)
> Committed as http://trac.webkit.org/changeset/47563

Please ignore this comment.  It was meant for Bug 28485.
Comment 3 David Kilzer (:ddkilzer) 2009-08-20 22:53:15 PDT
I think this change to scm.py fixes that:

             elif '..' in commitish:
-                commit_ids += self.run_command(['git', 'rev-list', commitish]).splitlines()
+                commit_ids += reversed(self.run_command(['git', 'rev-list', commitish]).splitlines())
Comment 4 Adam Barth 2009-08-20 22:56:29 PDT
> I think this change to scm.py fixes that:

Cool!  Now we just need a unittest.  :)
Comment 5 David Kilzer (:ddkilzer) 2009-09-01 17:56:55 PDT
Created attachment 38903 [details]
Patch v1
Comment 6 Adam Barth 2009-09-01 18:07:58 PDT
Comment on attachment 38903 [details]
Patch v1

Awesome.  :)
Comment 7 David Kilzer (:ddkilzer) 2009-09-01 19:27:22 PDT
Committed r47953: <http://trac.webkit.org/changeset/47953>