* Re: git-scm.com transition [not found] <d411cc4a0812151007n1be9ce95h92c8c11592ea5f9d@mail.gmail.com> @ 2008-12-16 11:41 ` Petr Baudis [not found] ` <d411cc4a0901011040h4ab97aag20de54a6e138a4ec@mail.gmail.com> 0 siblings, 1 reply; 21+ messages in thread From: Petr Baudis @ 2008-12-16 11:41 UTC (permalink / raw) To: Scott Chacon; +Cc: git Hi, On Mon, Dec 15, 2008 at 10:07:05AM -0800, Scott Chacon wrote: > I've been working on some docs, like an easy reference, that I could > put up at git-scm.com. I was wondering if we were still planning on > transitioning the site from git.or.cz -> git-scm.com? sure - I just need to be prodded about it, as I said. ;-) > Is there anything I need to do to help you with that? Are there any > elements missing still? hmm... I'm really busy before the end of the year, but this should take just a really short while by now, so let's see if there are still some nits: "$ git clone git://github.com/git/hello-world.git" on the frontpage overflows from the box for me, and so does "git commit -m 'Initial commit'" in the other box. I work on smallish notebook with 1024x768 resolution, but there are still wide white stripes on the sides. Mention FAQ in the "Got a question?" box? Migrate the SVN crash course to git-scm.com too? Would make sense, imho. Or maybe we can just throw it on the wiki. Has anyone reviewed " Pragmatic Version Control Using Git by Travis Swicegood " if we advertise it on the homepage? I remember looking at some very early preview and feeling quite uncomfortable about it. Mentioning a book on the homepage is some kind of an endorsement. Merge "Multimedia" into "Videos"? I'm wondering if the "Related Tools" section shouldn't get a kind of facelift (as e.g. by now imho people are perceiving gitk, git-gui and gitweb all as integral git components, you might want to mention TopGit instead of Cogito, etc.) and the 4x4 format is probably not too appropriate (the hosting sites aren't a natural fit there, and I chose it originally only to reduce the vertical length of the single-page homepage). But that's certainly not a blocking issue for the redirect. -- Petr "Pasky" Baudis The average, healthy, well-adjusted adult gets up at seven-thirty in the morning feeling just terrible. -- Jean Kerr ^ permalink raw reply [flat|nested] 21+ messages in thread
[parent not found: <d411cc4a0901011040h4ab97aag20de54a6e138a4ec@mail.gmail.com>]
* [ANNOUNCE] Git homepage change [not found] ` <d411cc4a0901011040h4ab97aag20de54a6e138a4ec@mail.gmail.com> @ 2009-01-05 16:40 ` Petr Baudis 2009-01-05 18:57 ` Miklos Vajna ` (3 more replies) 0 siblings, 4 replies; 21+ messages in thread From: Petr Baudis @ 2009-01-05 16:40 UTC (permalink / raw) To: Scott Chacon; +Cc: git Hi, thanks for the changes, Scott! Based on the previous feedback of other developers and my last review of git-scm.com, I have changed git.or.cz to redirect to git-scm.com. The wiki is still hosted at the original place for the time being, as well as the man/ gitbot redirect. To reach the original manpage, use http://git.or.cz/index.html. Have a fun year, -- Petr "Pasky" Baudis The average, healthy, well-adjusted adult gets up at seven-thirty in the morning feeling just terrible. -- Jean Kerr ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 16:40 ` [ANNOUNCE] Git homepage change Petr Baudis @ 2009-01-05 18:57 ` Miklos Vajna 2009-01-05 19:03 ` Miklos Vajna 2009-01-05 22:52 ` [PATCH] get_authors.sh, author.rb: use -s option of git shortlog Adeodato Simó 2009-01-05 19:40 ` [ANNOUNCE] Git homepage change Mike Hommey ` (2 subsequent siblings) 3 siblings, 2 replies; 21+ messages in thread From: Miklos Vajna @ 2009-01-05 18:57 UTC (permalink / raw) To: Scott Chacon; +Cc: Petr Baudis, git [-- Attachment #1: Type: text/plain, Size: 876 bytes --] On Mon, Jan 05, 2009 at 05:40:01PM +0100, Petr Baudis <pasky@suse.cz> wrote: > Based on the previous feedback of other developers and my last review > of git-scm.com, I have changed git.or.cz to redirect to git-scm.com. Just wondering, why don't you use the -s option of git shortlog in ./script/get_authors.sh? I mean: diff --git a/script/get_authors.sh b/script/get_authors.sh index 9aa8c6b..89948e2 100755 --- a/script/get_authors.sh +++ b/script/get_authors.sh @@ -1,3 +1,3 @@ export GIT_DIR=/Users/schacon/projects/git/.git cd /Users/schacon/projects/git -git log --pretty=short --no-merges | git shortlog -n | grep -v -e '^ ' | grep ':' > ../gitscm/config/authors.txt +git shortlog -s -n > ../gitscm/config/authors.txt I suppose fixing up the ruby part after this is not that hard, sadly I don't speak Ruby myself, so I have no idea where and what to touch. ;-) [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply related [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 18:57 ` Miklos Vajna @ 2009-01-05 19:03 ` Miklos Vajna 2009-01-05 22:52 ` [PATCH] get_authors.sh, author.rb: use -s option of git shortlog Adeodato Simó 1 sibling, 0 replies; 21+ messages in thread From: Miklos Vajna @ 2009-01-05 19:03 UTC (permalink / raw) To: Scott Chacon; +Cc: Petr Baudis, git [-- Attachment #1: Type: text/plain, Size: 914 bytes --] On Mon, Jan 05, 2009 at 07:57:37PM +0100, Miklos Vajna <vmiklos@frugalware.org> wrote: > --- a/script/get_authors.sh > +++ b/script/get_authors.sh > @@ -1,3 +1,3 @@ > export GIT_DIR=/Users/schacon/projects/git/.git > cd /Users/schacon/projects/git > -git log --pretty=short --no-merges | git shortlog -n | grep -v -e '^ ' | grep ':' > ../gitscm/config/authors.txt > +git shortlog -s -n > ../gitscm/config/authors.txt Err, --no-merges still makes sense, so probably this one would be better: diff --git a/script/get_authors.sh b/script/get_authors.sh index 9aa8c6b..1656da4 100755 --- a/script/get_authors.sh +++ b/script/get_authors.sh @@ -1,3 +1,3 @@ export GIT_DIR=/Users/schacon/projects/git/.git cd /Users/schacon/projects/git -git log --pretty=short --no-merges | git shortlog -n | grep -v -e '^ ' | grep ':' > ../gitscm/config/authors.txt +git shortlog --no-merges -s -n > ../gitscm/config/authors.txt [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH] get_authors.sh, author.rb: use -s option of git shortlog. 2009-01-05 18:57 ` Miklos Vajna 2009-01-05 19:03 ` Miklos Vajna @ 2009-01-05 22:52 ` Adeodato Simó 2009-01-05 23:54 ` Miklos Vajna 1 sibling, 1 reply; 21+ messages in thread From: Adeodato Simó @ 2009-01-05 22:52 UTC (permalink / raw) To: Scott Chacon; +Cc: git, Miklos Vajna, Adeodato Simó Suggested by Miklos Vajna <vmiklos@frugalware.org>. --- app/models/author.rb | 26 ++++++++++++-------------- script/get_authors.sh | 2 +- 2 files changed, 13 insertions(+), 15 deletions(-) > I suppose fixing up the ruby part after this is not that hard, sadly I > don't speak Ruby myself, so I have no idea where and what to touch. ;-) Done. Btw, I don't think authors.txt should be in the repo at all, since it's automatically generated, but it's your choice. :-) diff --git a/app/models/author.rb b/app/models/author.rb index 8fafc15..6bf069a 100644 --- a/app/models/author.rb +++ b/app/models/author.rb @@ -1,22 +1,20 @@ class Author - - def self.all - authors = File.join(RAILS_ROOT, 'config/authors.txt') + def self.all + authors = File.join(RAILS_ROOT, 'config/authors.txt') if File.exists?(authors) authors = File.readlines(authors) @authors = {:main => [], :contrib => []} authors.each do |author| - data = author.split(' ') - number = data.pop.gsub('(', '').gsub(')', '').chomp - name = data.join(' ') - if(number.to_i > 50) - @authors[:main] << [name, number.to_i] - else - @authors[:contrib] << [name, number.to_i] + if author =~ /(\d+)\s+(.+)/ + name, number = $2, $1.to_i + if number > 50 + @authors[:main] << [name, number] + else + @authors[:contrib] << [name, number] + end end end + @authors end - @authors - end - -end \ No newline at end of file + end +end diff --git a/script/get_authors.sh b/script/get_authors.sh index 9aa8c6b..028a354 100755 --- a/script/get_authors.sh +++ b/script/get_authors.sh @@ -1,3 +1,3 @@ export GIT_DIR=/Users/schacon/projects/git/.git cd /Users/schacon/projects/git -git log --pretty=short --no-merges | git shortlog -n | grep -v -e '^ ' | grep ':' > ../gitscm/config/authors.txt +git shortlog --no-merges -sn > ../gitscm/config/authors.txt -- 1.6.1.62.g677ca ^ permalink raw reply related [flat|nested] 21+ messages in thread
* Re: [PATCH] get_authors.sh, author.rb: use -s option of git shortlog. 2009-01-05 22:52 ` [PATCH] get_authors.sh, author.rb: use -s option of git shortlog Adeodato Simó @ 2009-01-05 23:54 ` Miklos Vajna 0 siblings, 0 replies; 21+ messages in thread From: Miklos Vajna @ 2009-01-05 23:54 UTC (permalink / raw) To: Adeodato Simó; +Cc: Scott Chacon, git [-- Attachment #1: Type: text/plain, Size: 278 bytes --] On Mon, Jan 05, 2009 at 11:52:26PM +0100, Adeodato Simó <dato@net.com.org.es> wrote: > > I suppose fixing up the ruby part after this is not that hard, sadly I > > don't speak Ruby myself, so I have no idea where and what to touch. ;-) > > Done. Heh, great, thanks. :) [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 16:40 ` [ANNOUNCE] Git homepage change Petr Baudis 2009-01-05 18:57 ` Miklos Vajna @ 2009-01-05 19:40 ` Mike Hommey 2009-01-05 21:27 ` David Bryson 2009-01-05 20:16 ` Felipe Oliveira Carvalho 2009-01-05 20:27 ` Ted Pavlic 3 siblings, 1 reply; 21+ messages in thread From: Mike Hommey @ 2009-01-05 19:40 UTC (permalink / raw) To: Petr Baudis; +Cc: Scott Chacon, git On Mon, Jan 05, 2009 at 05:40:01PM +0100, Petr Baudis wrote: > Hi, > > thanks for the changes, Scott! > > Based on the previous feedback of other developers and my last review > of git-scm.com, I have changed git.or.cz to redirect to git-scm.com. > > The wiki is still hosted at the original place for the time being, as > well as the man/ gitbot redirect. To reach the original manpage, use > http://git.or.cz/index.html. FWIW, I think the "mascot" or whatever it is supposed to be, on the top right end, is "safe", trademark/copyright-wise. It looks too much like どーもくん(Dômo-kun), the NHK mascot. http://images.google.co.jp/images?q=%E3%81%A9%E3%83%BC%E3%82%82%E3%81%8F%E3%82%93&ie=UTF-8&oe=UTF-8&hl=en&um=1&sa=N&tab=wi Mike ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 19:40 ` [ANNOUNCE] Git homepage change Mike Hommey @ 2009-01-05 21:27 ` David Bryson 2009-01-06 1:49 ` Scott Chacon 0 siblings, 1 reply; 21+ messages in thread From: David Bryson @ 2009-01-05 21:27 UTC (permalink / raw) To: Mike Hommey; +Cc: Scott Chacon, git [-- Attachment #1: Type: text/plain, Size: 606 bytes --] On Mon, Jan 05, 2009 at 08:40:11PM +0100 or thereabouts, Mike Hommey wrote: > > FWIW, I think the "mascot" or whatever it is supposed to be, on the > top right end, is "safe", trademark/copyright-wise. It looks too much > like ???????????????(D??mo-kun), the NHK mascot. > http://images.google.co.jp/images?q=%E3%81%A9%E3%83%BC%E3%82%82%E3%81%8F%E3%82%93&ie=UTF-8&oe=UTF-8&hl=en&um=1&sa=N&tab=wi I think Scott mentioned at GitTogether that they paid the same artist design some artwork for them including that tree munching monster and an octopus. Scott do you care to elaborate ? Dave [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 21:27 ` David Bryson @ 2009-01-06 1:49 ` Scott Chacon 2009-01-06 2:17 ` Baz ` (3 more replies) 0 siblings, 4 replies; 21+ messages in thread From: Scott Chacon @ 2009-01-06 1:49 UTC (permalink / raw) To: David Bryson; +Cc: Mike Hommey, git Hi, On Mon, Jan 5, 2009 at 1:27 PM, David Bryson <david@statichacks.org> wrote: > On Mon, Jan 05, 2009 at 08:40:11PM +0100 or thereabouts, Mike Hommey wrote: >> >> FWIW, I think the "mascot" or whatever it is supposed to be, on the >> top right end, is "safe", trademark/copyright-wise. It looks too much >> like ???????????????(D??mo-kun), the NHK mascot. >> http://images.google.co.jp/images?q=%E3%81%A9%E3%83%BC%E3%82%82%E3%81%8F%E3%82%93&ie=UTF-8&oe=UTF-8&hl=en&um=1&sa=N&tab=wi > > I think Scott mentioned at GitTogether that they paid the same artist > design some artwork for them including that tree munching monster and an > octopus. > > Scott do you care to elaborate ? I bought rights to the image from iStockPhoto, we can use it online for whatever we want to. The only restriction is that we can't sell stuff with the image on it. I have no idea what NHK is, nor do I know how TM/copyright issues would work in this regard - (the site is hosted in the US, has NHK registered TM for that here?) - but I doubt it really matters. If I get a cease and desist, I'll replace the image, but to me it doesn't seem close enough to infringe and I doubt they would care. Btw, I would also like to say in general that the response to this from emails sent to me personally (my address is at the bottom of the page) has been very positive and I've even received a few patches that are now live. Also, Miklos : your patch changes the format of the output and doesn't speed things up or anything, so I'm just sticking with the current script for now (unless I'm missing something). Boyd Gerber: I'm confused - the mailing list archive link on the home page points to the Gmane page, which is completely up to date. Is there a link I'm missing? Thanks, Scott > > Dave > > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 1:49 ` Scott Chacon @ 2009-01-06 2:17 ` Baz 2009-01-06 2:25 ` Baz 2009-01-06 2:43 ` Miklos Vajna ` (2 subsequent siblings) 3 siblings, 1 reply; 21+ messages in thread From: Baz @ 2009-01-06 2:17 UTC (permalink / raw) To: Scott Chacon; +Cc: David Bryson, Mike Hommey, git 2009/1/6 Scott Chacon <schacon@gmail.com>: > Hi, > > On Mon, Jan 5, 2009 at 1:27 PM, David Bryson <david@statichacks.org> wrote: >> On Mon, Jan 05, 2009 at 08:40:11PM +0100 or thereabouts, Mike Hommey wrote: >>> >>> FWIW, I think the "mascot" or whatever it is supposed to be, on the >>> top right end, is "safe", trademark/copyright-wise. It looks too much >>> like ???????????????(D??mo-kun), the NHK mascot. >>> http://images.google.co.jp/images?q=%E3%81%A9%E3%83%BC%E3%82%82%E3%81%8F%E3%82%93&ie=UTF-8&oe=UTF-8&hl=en&um=1&sa=N&tab=wi >> >> I think Scott mentioned at GitTogether that they paid the same artist >> design some artwork for them including that tree munching monster and an >> octopus. >> >> Scott do you care to elaborate ? > > I bought rights to the image from iStockPhoto, we can use it online > for whatever we want to. The only restriction is that we can't sell > stuff with the image on it. I have no idea what NHK is, nor do I know > how TM/copyright issues would work in this regard - (the site is > hosted in the US, has NHK registered TM for that here?) - but I doubt > it really matters. If I get a cease and desist, I'll replace the > image, but to me it doesn't seem close enough to infringe and I doubt > they would care. NHK are the public broadcaster in Japan, and Domo-kun is their mascot. Apparently the NHK spots with Domo-kun are also used in the US on Nickelodeon. It's like the NBC peacock, or the BBC test card girl: instantly recognizable to anyone who watched that channel. And yes, there is a US trademark: http://tess2.uspto.gov/bin/showfield?f=doc&state=3pcqf.6.1 No connection to NHK at all, but I thought you'd used Domo deliberately when I first saw that logo, so got curious. The site is great, btw. Cheers, Baz > > Btw, I would also like to say in general that the response to this > from emails sent to me personally (my address is at the bottom of the > page) has been very positive and I've even received a few patches that > are now live. > > Also, Miklos : your patch changes the format of the output and doesn't > speed things up or anything, so I'm just sticking with the current > script for now (unless I'm missing something). > > Boyd Gerber: I'm confused - the mailing list archive link on the home > page points to the Gmane page, which is completely up to date. Is > there a link I'm missing? > > Thanks, > Scott > >> >> Dave >> >> > -- > To unsubscribe from this list: send the line "unsubscribe git" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 2:17 ` Baz @ 2009-01-06 2:25 ` Baz 0 siblings, 0 replies; 21+ messages in thread From: Baz @ 2009-01-06 2:25 UTC (permalink / raw) To: Scott Chacon; +Cc: David Bryson, Mike Hommey, git 2009/1/6 Baz <brian.ewins@gmail.com>: > 2009/1/6 Scott Chacon <schacon@gmail.com>: >> Hi, >> >> On Mon, Jan 5, 2009 at 1:27 PM, David Bryson <david@statichacks.org> wrote: >>> On Mon, Jan 05, 2009 at 08:40:11PM +0100 or thereabouts, Mike Hommey wrote: >>>> >>>> FWIW, I think the "mascot" or whatever it is supposed to be, on the >>>> top right end, is "safe", trademark/copyright-wise. It looks too much >>>> like ???????????????(D??mo-kun), the NHK mascot. >>>> http://images.google.co.jp/images?q=%E3%81%A9%E3%83%BC%E3%82%82%E3%81%8F%E3%82%93&ie=UTF-8&oe=UTF-8&hl=en&um=1&sa=N&tab=wi >>> >>> I think Scott mentioned at GitTogether that they paid the same artist >>> design some artwork for them including that tree munching monster and an >>> octopus. >>> >>> Scott do you care to elaborate ? >> >> I bought rights to the image from iStockPhoto, we can use it online >> for whatever we want to. The only restriction is that we can't sell >> stuff with the image on it. I have no idea what NHK is, nor do I know >> how TM/copyright issues would work in this regard - (the site is >> hosted in the US, has NHK registered TM for that here?) - but I doubt >> it really matters. If I get a cease and desist, I'll replace the >> image, but to me it doesn't seem close enough to infringe and I doubt >> they would care. > > NHK are the public broadcaster in Japan, and Domo-kun is their mascot. > Apparently the NHK spots with Domo-kun are also used in the US on > Nickelodeon. It's like the NBC peacock, or the BBC test card girl: > instantly recognizable to anyone who watched that channel. > > And yes, there is a US trademark: > http://tess2.uspto.gov/bin/showfield?f=doc&state=3pcqf.6.1 Sorry, that link uses cookie state. Here's one directly to the TM: http://tarr.uspto.gov/servlet/tarr?regser=serial&entry=77266968 > > No connection to NHK at all, but I thought you'd used Domo > deliberately when I first saw that logo, so got curious. The site is > great, btw. > > Cheers, > Baz > >> >> Btw, I would also like to say in general that the response to this >> from emails sent to me personally (my address is at the bottom of the >> page) has been very positive and I've even received a few patches that >> are now live. >> >> Also, Miklos : your patch changes the format of the output and doesn't >> speed things up or anything, so I'm just sticking with the current >> script for now (unless I'm missing something). >> >> Boyd Gerber: I'm confused - the mailing list archive link on the home >> page points to the Gmane page, which is completely up to date. Is >> there a link I'm missing? >> >> Thanks, >> Scott >> >>> >>> Dave >>> >>> >> -- >> To unsubscribe from this list: send the line "unsubscribe git" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 1:49 ` Scott Chacon 2009-01-06 2:17 ` Baz @ 2009-01-06 2:43 ` Miklos Vajna 2009-01-06 4:24 ` Boyd Lynn Gerber 2009-01-06 9:07 ` Adeodato Simó 3 siblings, 0 replies; 21+ messages in thread From: Miklos Vajna @ 2009-01-06 2:43 UTC (permalink / raw) To: Scott Chacon; +Cc: David Bryson, Mike Hommey, git [-- Attachment #1: Type: text/plain, Size: 479 bytes --] On Mon, Jan 05, 2009 at 05:49:01PM -0800, Scott Chacon <schacon@gmail.com> wrote: > Also, Miklos : your patch changes the format of the output and doesn't > speed things up or anything, so I'm just sticking with the current > script for now (unless I'm missing something). I think the patch just makes things simpler (why not using -s if you then later use grep to drop what -s would hide?), and Adeodato's patch updates the ruby part as well. But of course it's up to you. ;-) [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 1:49 ` Scott Chacon 2009-01-06 2:17 ` Baz 2009-01-06 2:43 ` Miklos Vajna @ 2009-01-06 4:24 ` Boyd Lynn Gerber 2009-01-06 8:54 ` Miklos Vajna 2009-01-06 9:07 ` Adeodato Simó 3 siblings, 1 reply; 21+ messages in thread From: Boyd Lynn Gerber @ 2009-01-06 4:24 UTC (permalink / raw) To: Scott Chacon; +Cc: David Bryson, Mike Hommey, git On Mon, 5 Jan 2009, Scott Chacon wrote: > On Mon, Jan 5, 2009 at 1:27 PM, David Bryson <david@statichacks.org> wrote: >> On Mon, Jan 05, 2009 at 08:40:11PM +0100 or thereabouts, Mike Hommey wrote: >>> >>> FWIW, I think the "mascot" or whatever it is supposed to be, on the >>> top right end, is "safe", trademark/copyright-wise. It looks too much >>> like ???????????????(D??mo-kun), the NHK mascot. >>> http://images.google.co.jp/images?q=%E3%81%A9%E3%83%BC%E3%82%82%E3%81%8F%E3%82%93&ie=UTF-8&oe=UTF-8&hl=en&um=1&sa=N&tab=wi >> >> I think Scott mentioned at GitTogether that they paid the same artist >> design some artwork for them including that tree munching monster and an >> octopus. >> >> Scott do you care to elaborate ? > > I bought rights to the image from iStockPhoto, we can use it online > for whatever we want to. The only restriction is that we can't sell > stuff with the image on it. I have no idea what NHK is, nor do I know > how TM/copyright issues would work in this regard - (the site is > hosted in the US, has NHK registered TM for that here?) - but I doubt > it really matters. If I get a cease and desist, I'll replace the > image, but to me it doesn't seem close enough to infringe and I doubt > they would care. > > Btw, I would also like to say in general that the response to this > from emails sent to me personally (my address is at the bottom of the > page) has been very positive and I've even received a few patches that > are now live. > > Also, Miklos : your patch changes the format of the output and doesn't > speed things up or anything, so I'm just sticking with the current > script for now (unless I'm missing something). > > Boyd Gerber: I'm confused - the mailing list archive link on the home > page points to the Gmane page, which is completely up to date. Is > there a link I'm missing? This is the link You can also ask the Git community directly at our git@vger.kernel.org mailing list. with the link below. http://dir.gmane.org/gmane.comp.version-control.git On this page the following... Other mailing list archives for this list: 1. The Mail Archive http://www.mail-archive.com/git@vger.kernel.org/ And this states this link http://www.mail-archive.com/git@vger.kernel.org/ And the lastest is 2005 and earlier. -- Boyd Gerber <gerberb@zenez.com> 801 849-0213 ZENEZ 1042 East Fort Union #135, Midvale Utah 84047 ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 4:24 ` Boyd Lynn Gerber @ 2009-01-06 8:54 ` Miklos Vajna 2009-01-06 16:12 ` Boyd Lynn Gerber 0 siblings, 1 reply; 21+ messages in thread From: Miklos Vajna @ 2009-01-06 8:54 UTC (permalink / raw) To: Boyd Lynn Gerber; +Cc: Scott Chacon, David Bryson, Mike Hommey, git [-- Attachment #1: Type: text/plain, Size: 591 bytes --] On Mon, Jan 05, 2009 at 09:24:16PM -0700, Boyd Lynn Gerber <gerberb@zenez.com> wrote: > http://dir.gmane.org/gmane.comp.version-control.git > > On this page the following... > > Other mailing list archives for this list: > > 1. The Mail Archive > > http://www.mail-archive.com/git@vger.kernel.org/ > > And this states this link > > http://www.mail-archive.com/git@vger.kernel.org/ > > And the lastest is 2005 and earlier. I don't think you should blame Scott for this, it seem to be a gmane vs mail-archive issue, and gmane is mentioned already in MaintNotes. [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 8:54 ` Miklos Vajna @ 2009-01-06 16:12 ` Boyd Lynn Gerber 2009-01-06 20:40 ` Miklos Vajna 0 siblings, 1 reply; 21+ messages in thread From: Boyd Lynn Gerber @ 2009-01-06 16:12 UTC (permalink / raw) To: Miklos Vajna; +Cc: Scott Chacon, David Bryson, Mike Hommey, git On Tue, 6 Jan 2009, Miklos Vajna wrote: > On Mon, Jan 05, 2009 at 09:24:16PM -0700, Boyd Lynn Gerber > <gerberb@zenez.com> wrote: >> http://dir.gmane.org/gmane.comp.version-control.git >> >> On this page the following... >> >> Other mailing list archives for this list: >> >> 1. The Mail Archive >> >> http://www.mail-archive.com/git@vger.kernel.org/ >> >> And this states this link >> >> http://www.mail-archive.com/git@vger.kernel.org/ >> >> And the lastest is 2005 and earlier. > > I don't think you should blame Scott for this, it seem to be a gmane vs > mail-archive issue, and gmane is mentioned already in MaintNotes. I was not sure who/what/where to make a not of this. I think it would be good if we could get a link to the various archives. During an update of my system, a file was changed that cause email to me to be bounced. I did not relealize it. I was trying to find archived. I thought I would start with our new main page. I had to do google searches to finally find an archive. The only problem is I have not figured out how to download all 303 articles, quickly/easily. You would think one of the majordomo commands to get articles would work. They do not. I thought I should remport my finding and see if anyone knew or could make changes to make it easier for us to find the archives. Thanks, -- Boyd Gerber <gerberb@zenez.com> 801 849-0213 ZENEZ 1042 East Fort Union #135, Midvale Utah 84047 ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 16:12 ` Boyd Lynn Gerber @ 2009-01-06 20:40 ` Miklos Vajna 0 siblings, 0 replies; 21+ messages in thread From: Miklos Vajna @ 2009-01-06 20:40 UTC (permalink / raw) To: Boyd Lynn Gerber; +Cc: Scott Chacon, David Bryson, Mike Hommey, git [-- Attachment #1: Type: text/plain, Size: 337 bytes --] On Tue, Jan 06, 2009 at 09:12:30AM -0700, Boyd Lynn Gerber <gerberb@zenez.com> wrote: > archive. The only problem is I have not figured out how to download all > 303 articles, quickly/easily. You would think one of the majordomo > commands to get articles would work. They do not. I would use: http://gmane.org/export.php [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-06 1:49 ` Scott Chacon ` (2 preceding siblings ...) 2009-01-06 4:24 ` Boyd Lynn Gerber @ 2009-01-06 9:07 ` Adeodato Simó 3 siblings, 0 replies; 21+ messages in thread From: Adeodato Simó @ 2009-01-06 9:07 UTC (permalink / raw) To: Scott Chacon; +Cc: git * Scott Chacon [Mon, 05 Jan 2009 17:49:01 -0800]: > Also, Miklos : your patch changes the format of the output and doesn't > speed things up or anything, so I'm just sticking with the current > script for now (unless I'm missing something). -8<- git log --pretty=short --no-merges | git shortlog -n | grep -v -e '^ ' | grep ':' > ../gitscm/config/authors.txt data = author.split(' ') number = data.pop.gsub('(', '').gsub(')', '').chomp name = data.join(' ') -8<- vs -8<- v2 -8<- git shortlog --no-merges -sn > ../gitscm/config/authors.txt if author =~ /(\d+)\s+(.+)/ name, number = $2, $1 -8<- HTH. P.S.: And it is a tad faster, yes (not that that should be the primary criteria). -- Adeodato Simó dato at net.com.org.es Debian Developer adeodato at debian.org The true teacher defends his pupils against his own personal influence. -- Amos Bronson Alcott ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 16:40 ` [ANNOUNCE] Git homepage change Petr Baudis 2009-01-05 18:57 ` Miklos Vajna 2009-01-05 19:40 ` [ANNOUNCE] Git homepage change Mike Hommey @ 2009-01-05 20:16 ` Felipe Oliveira Carvalho 2009-01-05 20:33 ` Scott Chacon 2009-01-05 20:27 ` Ted Pavlic 3 siblings, 1 reply; 21+ messages in thread From: Felipe Oliveira Carvalho @ 2009-01-05 20:16 UTC (permalink / raw) To: Petr Baudis; +Cc: Scott Chacon, git On the footer we have: "Source for this website was forked from Petr Baudis's git.or.cz" The link git.or.cz should be changed to git.or.cz/index.html to avoid confusion for newcomers. git-scm.com is a very good page for "git quick start". -- Felipe ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 20:16 ` Felipe Oliveira Carvalho @ 2009-01-05 20:33 ` Scott Chacon 2009-01-05 20:51 ` Boyd Lynn Gerber 0 siblings, 1 reply; 21+ messages in thread From: Scott Chacon @ 2009-01-05 20:33 UTC (permalink / raw) To: Felipe Oliveira Carvalho; +Cc: Petr Baudis, git Hi, On Mon, Jan 5, 2009 at 12:16 PM, Felipe Oliveira Carvalho <felipekde@gmail.com> wrote: > On the footer we have: > "Source for this website was forked from Petr Baudis's git.or.cz" > > The link git.or.cz should be changed to git.or.cz/index.html to avoid > confusion for newcomers. Thanks, that is a good catch - I just updated this. Scott > > git-scm.com is a very good page for "git quick start". > > -- > Felipe > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 20:33 ` Scott Chacon @ 2009-01-05 20:51 ` Boyd Lynn Gerber 0 siblings, 0 replies; 21+ messages in thread From: Boyd Lynn Gerber @ 2009-01-05 20:51 UTC (permalink / raw) To: Scott Chacon; +Cc: Felipe Oliveira Carvalho, Petr Baudis, git On Mon, 5 Jan 2009, Scott Chacon wrote: > On Mon, Jan 5, 2009 at 12:16 PM, Felipe Oliveira Carvalho > <felipekde@gmail.com> wrote: >> On the footer we have: >> "Source for this website was forked from Petr Baudis's git.or.cz" >> >> The link git.or.cz should be changed to git.or.cz/index.html to avoid >> confusion for newcomers. > > Thanks, that is a good catch - I just updated this. Also the mail list archive should really point to a valid archive. 2005 is really old. -- Boyd Gerber <gerberb@zenez.com> 801 849-0213 ZENEZ 1042 East Fort Union #135, Midvale Utah 84047 ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [ANNOUNCE] Git homepage change 2009-01-05 16:40 ` [ANNOUNCE] Git homepage change Petr Baudis ` (2 preceding siblings ...) 2009-01-05 20:16 ` Felipe Oliveira Carvalho @ 2009-01-05 20:27 ` Ted Pavlic 3 siblings, 0 replies; 21+ messages in thread From: Ted Pavlic @ 2009-01-05 20:27 UTC (permalink / raw) To: git; +Cc: Petr Baudis, Scott Chacon > The wiki is still hosted at the original place for the time being, as > well as the man/ gitbot redirect. To reach the original manpage, use > http://git.or.cz/index.html. There were a couple of other pages under git.or.cz that may still be linked elsewhere (e.g., the "external patches" page and the SVN crash course). It would be nice if permanent redirects were added from those pages to their new homes (so that existing links on the web wind up in the right place). --Ted -- Ted Pavlic <ted@tedpavlic.com> ^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2009-01-06 20:42 UTC | newest] Thread overview: 21+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <d411cc4a0812151007n1be9ce95h92c8c11592ea5f9d@mail.gmail.com> 2008-12-16 11:41 ` git-scm.com transition Petr Baudis [not found] ` <d411cc4a0901011040h4ab97aag20de54a6e138a4ec@mail.gmail.com> 2009-01-05 16:40 ` [ANNOUNCE] Git homepage change Petr Baudis 2009-01-05 18:57 ` Miklos Vajna 2009-01-05 19:03 ` Miklos Vajna 2009-01-05 22:52 ` [PATCH] get_authors.sh, author.rb: use -s option of git shortlog Adeodato Simó 2009-01-05 23:54 ` Miklos Vajna 2009-01-05 19:40 ` [ANNOUNCE] Git homepage change Mike Hommey 2009-01-05 21:27 ` David Bryson 2009-01-06 1:49 ` Scott Chacon 2009-01-06 2:17 ` Baz 2009-01-06 2:25 ` Baz 2009-01-06 2:43 ` Miklos Vajna 2009-01-06 4:24 ` Boyd Lynn Gerber 2009-01-06 8:54 ` Miklos Vajna 2009-01-06 16:12 ` Boyd Lynn Gerber 2009-01-06 20:40 ` Miklos Vajna 2009-01-06 9:07 ` Adeodato Simó 2009-01-05 20:16 ` Felipe Oliveira Carvalho 2009-01-05 20:33 ` Scott Chacon 2009-01-05 20:51 ` Boyd Lynn Gerber 2009-01-05 20:27 ` Ted Pavlic
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).