public inbox for [email protected]
help / color / mirror / Atom feedsearching for git commit hash
19+ messages / 8 participants
[nested] [flat]
* searching for git commit hash
@ 2012-05-30 00:31 Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 12:54 ` Re: searching for git commit hash Greg Stark <[email protected]>
0 siblings, 2 replies; 19+ messages in thread
From: Bruce Momjian @ 2012-05-30 00:31 UTC (permalink / raw)
To: pgsql-www
How do I search for a commit with a specific hash tag on our git web
site?
http://git.postgresql.org/gitweb/?p=postgresql.git;a=summary
--
Bruce Momjian <[email protected]> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ It's impossible for everything to be true. +
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
@ 2012-05-30 05:06 ` Magnus Hagander <[email protected]>
2012-05-30 05:09 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
1 sibling, 2 replies; 19+ messages in thread
From: Magnus Hagander @ 2012-05-30 05:06 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: pgsql-www
On Wed, May 30, 2012 at 2:31 AM, Bruce Momjian <[email protected]> wrote:
> How do I search for a commit with a specific hash tag on our git web
> site?
>
> http://git.postgresql.org/gitweb/?p=postgresql.git;a=summary
I don't believe gitweb supports searching. You'll need to pick another
hash and then copy/paste on the URL.
--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
@ 2012-05-30 05:09 ` Bruce Momjian <[email protected]>
1 sibling, 0 replies; 19+ messages in thread
From: Bruce Momjian @ 2012-05-30 05:09 UTC (permalink / raw)
To: Magnus Hagander <[email protected]>; +Cc: pgsql-www
On Wed, May 30, 2012 at 07:06:54AM +0200, Magnus Hagander wrote:
> On Wed, May 30, 2012 at 2:31 AM, Bruce Momjian <[email protected]> wrote:
> > How do I search for a commit with a specific hash tag on our git web
> > site?
> >
> > http://git.postgresql.org/gitweb/?p=postgresql.git;a=summary
>
> I don't believe gitweb supports searching. You'll need to pick another
> hash and then copy/paste on the URL.
That's what I thought, but it seemed there must be a way. Obviously
not.
--
Bruce Momjian <[email protected]> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ It's impossible for everything to be true. +
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
@ 2012-05-30 09:44 ` Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
1 sibling, 1 reply; 19+ messages in thread
From: Marti Raudsepp @ 2012-05-30 09:44 UTC (permalink / raw)
To: Magnus Hagander <[email protected]>; +Cc: Bruce Momjian <[email protected]>; pgsql-www
On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
> On Wed, May 30, 2012 at 2:31 AM, Bruce Momjian <[email protected]> wrote:
>> How do I search for a commit with a specific hash tag on our git web
>> site?
> I don't believe gitweb supports searching. You'll need to pick another
> hash and then copy/paste on the URL.
Well there is a "search" box in the upper right corner, but I think it
can only search for text, not commit hashes.
Regards,
Marti
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
@ 2012-05-30 14:03 ` Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
0 siblings, 1 reply; 19+ messages in thread
From: Tom Lane @ 2012-05-30 14:03 UTC (permalink / raw)
To: Marti Raudsepp <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Bruce Momjian <[email protected]>; pgsql-www
Marti Raudsepp <[email protected]> writes:
> On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
>> I don't believe gitweb supports searching. You'll need to pick another
>> hash and then copy/paste on the URL.
> Well there is a "search" box in the upper right corner, but I think it
> can only search for text, not commit hashes.
I have a private page containing a text box I can type the hash into.
This is very fast and it works with hash prefixes too, which I bet
google would not.
<form action="http://git.postgresql.org/gitweb";
method="get" id="goto-commit-id">
<input type="hidden" name="p" value="postgresql.git" />
<input type="hidden" name="a" value="commitdiff" />
Git Commit Hash <input type="text" name="h" size="60" />
</form>
Dunno if enough people would use this to justify putting it on a public
page.
regards, tom lane
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
@ 2012-05-30 14:34 ` Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
0 siblings, 1 reply; 19+ messages in thread
From: Magnus Hagander @ 2012-05-30 14:34 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Marti Raudsepp <[email protected]>; Bruce Momjian <[email protected]>; pgsql-www
On Wed, May 30, 2012 at 4:03 PM, Tom Lane <[email protected]> wrote:
> Marti Raudsepp <[email protected]> writes:
>> On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
>>> I don't believe gitweb supports searching. You'll need to pick another
>>> hash and then copy/paste on the URL.
>
>> Well there is a "search" box in the upper right corner, but I think it
>> can only search for text, not commit hashes.
>
> I have a private page containing a text box I can type the hash into.
> This is very fast and it works with hash prefixes too, which I bet
> google would not.
>
> <form action="http://git.postgresql.org/gitweb";
> method="get" id="goto-commit-id">
> <input type="hidden" name="p" value="postgresql.git" />
> <input type="hidden" name="a" value="commitdiff" />
> Git Commit Hash <input type="text" name="h" size="60" />
> </form>
>
> Dunno if enough people would use this to justify putting it on a public
> page.
Should be easy enough to add if people want it - somewhere under
www.postgresql.org/developer/ i'd assume...
--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
@ 2012-09-02 12:54 ` Bruce Momjian <[email protected]>
2012-09-02 13:06 ` Re: searching for git commit hash Peter Geoghegan <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
0 siblings, 2 replies; 19+ messages in thread
From: Bruce Momjian @ 2012-09-02 12:54 UTC (permalink / raw)
To: Magnus Hagander <[email protected]>; +Cc: Tom Lane <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
On Wed, May 30, 2012 at 04:34:27PM +0200, Magnus Hagander wrote:
> On Wed, May 30, 2012 at 4:03 PM, Tom Lane <[email protected]> wrote:
> > Marti Raudsepp <[email protected]> writes:
> >> On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
> >>> I don't believe gitweb supports searching. You'll need to pick another
> >>> hash and then copy/paste on the URL.
> >
> >> Well there is a "search" box in the upper right corner, but I think it
> >> can only search for text, not commit hashes.
> >
> > I have a private page containing a text box I can type the hash into.
> > This is very fast and it works with hash prefixes too, which I bet
> > google would not.
> >
> > <form action="http://git.postgresql.org/gitweb";
> > method="get" id="goto-commit-id">
> > <input type="hidden" name="p" value="postgresql.git" />
> > <input type="hidden" name="a" value="commitdiff" />
> > Git Commit Hash <input type="text" name="h" size="60" />
> > </form>
> >
> > Dunno if enough people would use this to justify putting it on a public
> > page.
>
> Should be easy enough to add if people want it - somewhere under
> www.postgresql.org/developer/ i'd assume...
Yes, I think it would be very useful to have on our website.
--
Bruce Momjian <[email protected]> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ It's impossible for everything to be true. +
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
@ 2012-09-02 13:06 ` Peter Geoghegan <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
1 sibling, 1 reply; 19+ messages in thread
From: Peter Geoghegan @ 2012-09-02 13:06 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Tom Lane <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
On 2 September 2012 13:54, Bruce Momjian <[email protected]> wrote:
> On Wed, May 30, 2012 at 04:34:27PM +0200, Magnus Hagander wrote:
>> On Wed, May 30, 2012 at 4:03 PM, Tom Lane <[email protected]> wrote:
>> > Marti Raudsepp <[email protected]> writes:
>> >> On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
>> >>> I don't believe gitweb supports searching. You'll need to pick another
>> >>> hash and then copy/paste on the URL.
>> >
>> >> Well there is a "search" box in the upper right corner, but I think it
>> >> can only search for text, not commit hashes.
>> >
>> > I have a private page containing a text box I can type the hash into.
>> > This is very fast and it works with hash prefixes too, which I bet
>> > google would not.
>> >
>> > <form action="http://git.postgresql.org/gitweb";
>> > method="get" id="goto-commit-id">
>> > <input type="hidden" name="p" value="postgresql.git" />
>> > <input type="hidden" name="a" value="commitdiff" />
>> > Git Commit Hash <input type="text" name="h" size="60" />
>> > </form>
>> >
>> > Dunno if enough people would use this to justify putting it on a public
>> > page.
>>
>> Should be easy enough to add if people want it - somewhere under
>> www.postgresql.org/developer/ i'd assume...
>
> Yes, I think it would be very useful to have on our website.
+1
I'd like to have a Google chrome extension that exposes it through a
right-click context menu. Do you know enough javascript to throw one
together, Magnus? :-)
--
Peter Geoghegan http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training and Services
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-02 13:06 ` Re: searching for git commit hash Peter Geoghegan <[email protected]>
@ 2012-09-04 13:07 ` Magnus Hagander <[email protected]>
0 siblings, 0 replies; 19+ messages in thread
From: Magnus Hagander @ 2012-09-04 13:07 UTC (permalink / raw)
To: Peter Geoghegan <[email protected]>; +Cc: Bruce Momjian <[email protected]>; Tom Lane <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
On Sun, Sep 2, 2012 at 3:06 PM, Peter Geoghegan <[email protected]> wrote:
> On 2 September 2012 13:54, Bruce Momjian <[email protected]> wrote:
>> On Wed, May 30, 2012 at 04:34:27PM +0200, Magnus Hagander wrote:
>>> On Wed, May 30, 2012 at 4:03 PM, Tom Lane <[email protected]> wrote:
>>> > Marti Raudsepp <[email protected]> writes:
>>> >> On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
>>> >>> I don't believe gitweb supports searching. You'll need to pick another
>>> >>> hash and then copy/paste on the URL.
>>> >
>>> >> Well there is a "search" box in the upper right corner, but I think it
>>> >> can only search for text, not commit hashes.
>>> >
>>> > I have a private page containing a text box I can type the hash into.
>>> > This is very fast and it works with hash prefixes too, which I bet
>>> > google would not.
>>> >
>>> > <form action="http://git.postgresql.org/gitweb";
>>> > method="get" id="goto-commit-id">
>>> > <input type="hidden" name="p" value="postgresql.git" />
>>> > <input type="hidden" name="a" value="commitdiff" />
>>> > Git Commit Hash <input type="text" name="h" size="60" />
>>> > </form>
>>> >
>>> > Dunno if enough people would use this to justify putting it on a public
>>> > page.
>>>
>>> Should be easy enough to add if people want it - somewhere under
>>> www.postgresql.org/developer/ i'd assume...
>>
>> Yes, I think it would be very useful to have on our website.
>
> +1
>
> I'd like to have a Google chrome extension that exposes it through a
> right-click context menu. Do you know enough javascript to throw one
> together, Magnus? :-)
Funny guy... I can test it once you've written it though.
--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
@ 2012-09-04 13:07 ` Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
1 sibling, 1 reply; 19+ messages in thread
From: Magnus Hagander @ 2012-09-04 13:07 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: Tom Lane <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
On Sun, Sep 2, 2012 at 2:54 PM, Bruce Momjian <[email protected]> wrote:
> On Wed, May 30, 2012 at 04:34:27PM +0200, Magnus Hagander wrote:
>> On Wed, May 30, 2012 at 4:03 PM, Tom Lane <[email protected]> wrote:
>> > Marti Raudsepp <[email protected]> writes:
>> >> On Wed, May 30, 2012 at 8:06 AM, Magnus Hagander <[email protected]> wrote:
>> >>> I don't believe gitweb supports searching. You'll need to pick another
>> >>> hash and then copy/paste on the URL.
>> >
>> >> Well there is a "search" box in the upper right corner, but I think it
>> >> can only search for text, not commit hashes.
>> >
>> > I have a private page containing a text box I can type the hash into.
>> > This is very fast and it works with hash prefixes too, which I bet
>> > google would not.
>> >
>> > <form action="http://git.postgresql.org/gitweb";
>> > method="get" id="goto-commit-id">
>> > <input type="hidden" name="p" value="postgresql.git" />
>> > <input type="hidden" name="a" value="commitdiff" />
>> > Git Commit Hash <input type="text" name="h" size="60" />
>> > </form>
>> >
>> > Dunno if enough people would use this to justify putting it on a public
>> > page.
>>
>> Should be easy enough to add if people want it - somewhere under
>> www.postgresql.org/developer/ i'd assume...
>
> Yes, I think it would be very useful to have on our website.
Added to http://www.postgresql.org/developer/coding/.
--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
@ 2012-09-25 21:34 ` Dimitri Fontaine <[email protected]>
2012-09-25 21:52 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-09-26 02:10 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
0 siblings, 2 replies; 19+ messages in thread
From: Dimitri Fontaine @ 2012-09-25 21:34 UTC (permalink / raw)
To: Magnus Hagander <[email protected]>; +Cc: Bruce Momjian <[email protected]>; Tom Lane <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
Magnus Hagander <[email protected]> writes:
> Added to http://www.postgresql.org/developer/coding/.
What I would like to have is the result of whatever tool is used those
days to know which branches contain any given patch. I though that was
./src/tools/git_changelog but I can't seem to have that work here.
Regards,
--
Dimitri Fontaine
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
@ 2012-09-25 21:52 ` Tom Lane <[email protected]>
2012-09-25 21:56 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
1 sibling, 1 reply; 19+ messages in thread
From: Tom Lane @ 2012-09-25 21:52 UTC (permalink / raw)
To: Dimitri Fontaine <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Bruce Momjian <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
Dimitri Fontaine <[email protected]> writes:
> What I would like to have is the result of whatever tool is used those
> days to know which branches contain any given patch. I though that was
> ./src/tools/git_changelog but I can't seem to have that work here.
That's what I use. What about it doesn't work for you?
regards, tom lane
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
2012-09-25 21:52 ` Re: searching for git commit hash Tom Lane <[email protected]>
@ 2012-09-25 21:56 ` Dimitri Fontaine <[email protected]>
2012-09-25 22:10 ` Re: searching for git commit hash Tom Lane <[email protected]>
0 siblings, 1 reply; 19+ messages in thread
From: Dimitri Fontaine @ 2012-09-25 21:56 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Bruce Momjian <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
Tom Lane <[email protected]> writes:
> That's what I use. What about it doesn't work for you?
I don't remember how to summon it properly so it keeps barking at me.
Mmmm, I did try to have the information reported for a single commit,
though.
./src/tools/git_changelog --since '2012-09-14 00:00:00' --oldest-first --details-after
fatal: ambiguous argument 'master..origin/REL9_2_STABLE': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
git log --format=fuller --date=iso --since=2012-09-14 00:00:00 --parents
master..origin/REL9_2_STABLE failed at ./src/tools/git_changelog line
141.
Well, I would like having the information on the web. Ideally at the
same place where we can browse the commit logs (gitweb), if not from
somewhere else where it's easy to grasp.
Regards,
--
Dimitri Fontaine
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
2012-09-25 21:52 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-09-25 21:56 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
@ 2012-09-25 22:10 ` Tom Lane <[email protected]>
2012-09-26 02:52 ` Re: searching for git commit hash Alvaro Herrera <[email protected]>
2012-09-26 09:24 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
0 siblings, 2 replies; 19+ messages in thread
From: Tom Lane @ 2012-09-25 22:10 UTC (permalink / raw)
To: Dimitri Fontaine <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Bruce Momjian <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
Dimitri Fontaine <[email protected]> writes:
> Tom Lane <[email protected]> writes:
>> That's what I use. What about it doesn't work for you?
> I don't remember how to summon it properly so it keeps barking at me.
FWIW, I run it once a week or so without any parameters and keep the
results in a text file for quick reference. I won't be answerable
for whether any of those options Bruce added work ;-)
> ./src/tools/git_changelog --since '2012-09-14 00:00:00' --oldest-first --details-after
> fatal: ambiguous argument 'master..origin/REL9_2_STABLE': unknown revision or path not in the working tree.
> Use '--' to separate paths from revisions
> git log --format=fuller --date=iso --since=2012-09-14 00:00:00 --parents
> master..origin/REL9_2_STABLE failed at ./src/tools/git_changelog line
> 141.
That is a bit odd though, since it seems to be failing in mainline code
that's not dependent on any options at all. What version of git do you
have?
regards, tom lane
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
2012-09-25 21:52 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-09-25 21:56 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
2012-09-25 22:10 ` Re: searching for git commit hash Tom Lane <[email protected]>
@ 2012-09-26 02:52 ` Alvaro Herrera <[email protected]>
1 sibling, 0 replies; 19+ messages in thread
From: Alvaro Herrera @ 2012-09-26 02:52 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Dimitri Fontaine <[email protected]>; Magnus Hagander <[email protected]>; Bruce Momjian <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
Excerpts from Tom Lane's message of mar sep 25 19:10:09 -0300 2012:
> Dimitri Fontaine <[email protected]> writes:
> > ./src/tools/git_changelog --since '2012-09-14 00:00:00' --oldest-first --details-after
> > fatal: ambiguous argument 'master..origin/REL9_2_STABLE': unknown revision or path not in the working tree.
> > Use '--' to separate paths from revisions
> > git log --format=fuller --date=iso --since=2012-09-14 00:00:00 --parents
> > master..origin/REL9_2_STABLE failed at ./src/tools/git_changelog line
> > 141.
>
> That is a bit odd though, since it seems to be failing in mainline code
> that's not dependent on any options at all. What version of git do you
> have?
I remember having it fail in a similar way (don't really recall exactly)
when I tried to run it in a clone that didn't have all branches (I had
deleted them per the instructions in the wiki). Once I restored them,
it started working.
--
Álvaro Herrera http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
2012-09-25 21:52 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-09-25 21:56 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
2012-09-25 22:10 ` Re: searching for git commit hash Tom Lane <[email protected]>
@ 2012-09-26 09:24 ` Dimitri Fontaine <[email protected]>
1 sibling, 0 replies; 19+ messages in thread
From: Dimitri Fontaine @ 2012-09-26 09:24 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Bruce Momjian <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
Tom Lane <[email protected]> writes:
> That is a bit odd though, since it seems to be failing in mainline code
> that's not dependent on any options at all. What version of git do you
> have?
git version 1.7.3.1
That said, I'm realizing that on this development machine:
dim ~/dev/PostgreSQL/postgres git branch
command_triggers
event_triggers
evt_trig_v1
evt_v1_diff
* master
origin-utility_node_to_string
And of course my origin here is my own github fork, the real thing here
is called the postgres remote…
And now trying to get several branches exist in different subdirs… not
there yet exactly with git, which is why an online tool would be great…
--
Dimitri Fontaine
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-05-30 09:44 ` Re: searching for git commit hash Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Re: searching for git commit hash Tom Lane <[email protected]>
2012-05-30 14:34 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
2012-09-04 13:07 ` Re: searching for git commit hash Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Re: searching for git commit hash Dimitri Fontaine <[email protected]>
@ 2012-09-26 02:10 ` Magnus Hagander <[email protected]>
1 sibling, 0 replies; 19+ messages in thread
From: Magnus Hagander @ 2012-09-26 02:10 UTC (permalink / raw)
To: Dimitri Fontaine <[email protected]>; +Cc: Bruce Momjian <[email protected]>; Tom Lane <[email protected]>; Marti Raudsepp <[email protected]>; pgsql-www
On Tue, Sep 25, 2012 at 11:34 PM, Dimitri Fontaine
<[email protected]> wrote:
> Magnus Hagander <[email protected]> writes:
>> Added to http://www.postgresql.org/developer/coding/.
>
> What I would like to have is the result of whatever tool is used those
> days to know which branches contain any given patch. I though that was
> ./src/tools/git_changelog but I can't seem to have that work here.
Are you talking about a simple "git branch -a --contains=<hash>"?
That only works if the hash is the same of course - not if the patch
was different in a back branch.
--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
@ 2012-05-30 12:54 ` Greg Stark <[email protected]>
2012-05-30 13:09 ` Re: searching for git commit hash Bruce Momjian <[email protected]>
1 sibling, 1 reply; 19+ messages in thread
From: Greg Stark @ 2012-05-30 12:54 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: pgsql-www
On Wed, May 30, 2012 at 1:31 AM, Bruce Momjian <[email protected]> wrote:
> How do I search for a commit with a specific hash tag on our git web
> site?
I just paste the hash into google and hit I'm Feeling Lucky.
Actually in reality I paste it into the omnibox in chrome so I then I
have to click the first search result.
--
greg
^ permalink raw reply [nested|flat] 19+ messages in thread
* Re: searching for git commit hash
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 12:54 ` Re: searching for git commit hash Greg Stark <[email protected]>
@ 2012-05-30 13:09 ` Bruce Momjian <[email protected]>
0 siblings, 0 replies; 19+ messages in thread
From: Bruce Momjian @ 2012-05-30 13:09 UTC (permalink / raw)
To: Greg Stark <[email protected]>; +Cc: pgsql-www
On Wed, May 30, 2012 at 01:54:17PM +0100, Greg Stark wrote:
> On Wed, May 30, 2012 at 1:31 AM, Bruce Momjian <[email protected]> wrote:
> > How do I search for a commit with a specific hash tag on our git web
> > site?
>
> I just paste the hash into google and hit I'm Feeling Lucky.
>
> Actually in reality I paste it into the omnibox in chrome so I then I
> have to click the first search result.
Wow, having Google search for it works; those hashes really are unique.
--
Bruce Momjian <[email protected]> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ It's impossible for everything to be true. +
^ permalink raw reply [nested|flat] 19+ messages in thread
end of thread, other threads:[~2012-09-26 09:24 UTC | newest]
Thread overview: 19+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2012-05-30 00:31 searching for git commit hash Bruce Momjian <[email protected]>
2012-05-30 05:06 ` Magnus Hagander <[email protected]>
2012-05-30 05:09 ` Bruce Momjian <[email protected]>
2012-05-30 09:44 ` Marti Raudsepp <[email protected]>
2012-05-30 14:03 ` Tom Lane <[email protected]>
2012-05-30 14:34 ` Magnus Hagander <[email protected]>
2012-09-02 12:54 ` Bruce Momjian <[email protected]>
2012-09-02 13:06 ` Peter Geoghegan <[email protected]>
2012-09-04 13:07 ` Magnus Hagander <[email protected]>
2012-09-04 13:07 ` Magnus Hagander <[email protected]>
2012-09-25 21:34 ` Dimitri Fontaine <[email protected]>
2012-09-25 21:52 ` Tom Lane <[email protected]>
2012-09-25 21:56 ` Dimitri Fontaine <[email protected]>
2012-09-25 22:10 ` Tom Lane <[email protected]>
2012-09-26 02:52 ` Alvaro Herrera <[email protected]>
2012-09-26 09:24 ` Dimitri Fontaine <[email protected]>
2012-09-26 02:10 ` Magnus Hagander <[email protected]>
2012-05-30 12:54 ` Greg Stark <[email protected]>
2012-05-30 13:09 ` Bruce Momjian <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox