* Git Download/Bootstrap Suggestion
@ 2009-03-27 17:09 Mike Gaffney
2009-03-27 23:21 ` Sverre Rabbelier
2009-03-28 7:24 ` Dilip M
0 siblings, 2 replies; 7+ messages in thread
From: Mike Gaffney @ 2009-03-27 17:09 UTC (permalink / raw)
To: git
I may be missing something, but I would like to request that
http://git-scm.com/download provide a link to a tarball of the actual
git clone of the current repository with the repo parked on the latest
stable. What I mean is that for most of my systems I build git off of
source but I like to be able to just git pull when I want to update
them. Currently what I have to do is
- download the source tarball (or the rpm)
- make it
- install it
- use that git clone the real repo
- checkout the newest tag
- make configure
- configure
- make
- make install
It'd be a lot cooler if I could just wget a full get repo on the latest
tag :)
Just a request, Thanks
-Mike
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Git Download/Bootstrap Suggestion 2009-03-27 17:09 Git Download/Bootstrap Suggestion Mike Gaffney @ 2009-03-27 23:21 ` Sverre Rabbelier 2009-03-28 16:09 ` Michael J Gruber 2009-03-28 7:24 ` Dilip M 1 sibling, 1 reply; 7+ messages in thread From: Sverre Rabbelier @ 2009-03-27 23:21 UTC (permalink / raw) To: Mike Gaffney; +Cc: git Heya, On Fri, Mar 27, 2009 at 18:09, Mike Gaffney <mr.gaffo@gmail.com> wrote: > I have to do is > - download the source tarball (or the rpm) > - make it > - install it Nah, you don't need to do all that ;). > It'd be a lot cooler if I could just wget a full get repo on the latest tag You mean like, this? http://repo.or.cz/w/git.git?a=snapshot;h=master;sf=tgz -- Cheers, Sverre Rabbelier ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Git Download/Bootstrap Suggestion 2009-03-27 23:21 ` Sverre Rabbelier @ 2009-03-28 16:09 ` Michael J Gruber 2009-03-28 16:15 ` Sverre Rabbelier 0 siblings, 1 reply; 7+ messages in thread From: Michael J Gruber @ 2009-03-28 16:09 UTC (permalink / raw) To: Sverre Rabbelier; +Cc: Mike Gaffney, git Sverre Rabbelier venit, vidit, dixit 28.03.2009 00:21: > Heya, > > On Fri, Mar 27, 2009 at 18:09, Mike Gaffney <mr.gaffo@gmail.com> wrote: >> I have to do is >> - download the source tarball (or the rpm) >> - make it >> - install it > > Nah, you don't need to do all that ;). > > >> It'd be a lot cooler if I could just wget a full get repo on the latest tag > > You mean like, this? > > http://repo.or.cz/w/git.git?a=snapshot;h=master;sf=tgz > No, I think he meant repo, not work tree. Michael ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Git Download/Bootstrap Suggestion 2009-03-28 16:09 ` Michael J Gruber @ 2009-03-28 16:15 ` Sverre Rabbelier 2009-03-28 16:24 ` Jacob Helwig 0 siblings, 1 reply; 7+ messages in thread From: Sverre Rabbelier @ 2009-03-28 16:15 UTC (permalink / raw) To: Michael J Gruber; +Cc: Mike Gaffney, git Heya, On Sat, Mar 28, 2009 at 17:09, Michael J Gruber <git@drmicha.warpmail.net> wrote: > No, I think he meant repo, not work tree. Why would he need the repo to bootstrap? -- Cheers, Sverre Rabbelier ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Git Download/Bootstrap Suggestion 2009-03-28 16:15 ` Sverre Rabbelier @ 2009-03-28 16:24 ` Jacob Helwig 2009-03-29 15:29 ` Scott Chacon 0 siblings, 1 reply; 7+ messages in thread From: Jacob Helwig @ 2009-03-28 16:24 UTC (permalink / raw) To: Sverre Rabbelier; +Cc: Michael J Gruber, Mike Gaffney, git So he can compile git from a git repo, and not have to download it (again) after compiling from a work tree. Saving a step, and re-compiling a bunch of files when he upgrades. On Sat, Mar 28, 2009 at 09:15, Sverre Rabbelier <srabbelier@gmail.com> wrote: > Heya, > > On Sat, Mar 28, 2009 at 17:09, Michael J Gruber > <git@drmicha.warpmail.net> wrote: >> No, I think he meant repo, not work tree. > > Why would he need the repo to bootstrap? > > -- > Cheers, > > Sverre Rabbelier > -- > 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] 7+ messages in thread
* Re: Git Download/Bootstrap Suggestion 2009-03-28 16:24 ` Jacob Helwig @ 2009-03-29 15:29 ` Scott Chacon 0 siblings, 0 replies; 7+ messages in thread From: Scott Chacon @ 2009-03-29 15:29 UTC (permalink / raw) To: Jacob Helwig; +Cc: Sverre Rabbelier, Michael J Gruber, Mike Gaffney, git On Sat, Mar 28, 2009 at 5:24 PM, Jacob Helwig <jacob.helwig@gmail.com> wrote: > So he can compile git from a git repo, and not have to download it > (again) after compiling from a work tree. Saving a step, and > re-compiling a bunch of files when he upgrades. > I'm a bit unclear why you would compile/install the second time - if it's the latest tag, it should be the same as you got from the archive on the website, the second step should just be re-installing the exact same Git. Why not just build it from source the first time and then pull down the full source for the subsequent times - you're losing seconds total in the process. Unless you're doing this all the time, in which case it seems like it makes more sense to just keep one repo, build a package of some sort (rpm, deb, etc) and distribute that to all the computers you're using. I mean, if you really, really want it then you can : a) clone the website source : git://github.com/schacon/gitscm b) write the script that would do it on each release (scripts/ dir) c) test it d) write some code that would dynamically link that in the downloads page at the bottom If that works then I'll probably pull it in for you. Scott > On Sat, Mar 28, 2009 at 09:15, Sverre Rabbelier <srabbelier@gmail.com> wrote: >> Heya, >> >> On Sat, Mar 28, 2009 at 17:09, Michael J Gruber >> <git@drmicha.warpmail.net> wrote: >>> No, I think he meant repo, not work tree. >> >> Why would he need the repo to bootstrap? >> >> -- >> Cheers, >> >> Sverre Rabbelier >> -- >> 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 >> > -- > 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] 7+ messages in thread
* Re: Git Download/Bootstrap Suggestion 2009-03-27 17:09 Git Download/Bootstrap Suggestion Mike Gaffney 2009-03-27 23:21 ` Sverre Rabbelier @ 2009-03-28 7:24 ` Dilip M 1 sibling, 0 replies; 7+ messages in thread From: Dilip M @ 2009-03-28 7:24 UTC (permalink / raw) To: Mike Gaffney, git I had a same question :) what I want is to distribute a git version across some team. I maintain a clone and keep the latest tag checkedout. When ever there is a new release (tag), I switch to master branch and pull. Than I checkout the new tag and compile. Is there any simple way to do this w/o any downtime?. There should be .... I just miss some extra knowledge on git. Thanks in advance for suggestions Dilip On 3/27/09, Mike Gaffney <mr.gaffo@gmail.com> wrote: > I may be missing something, but I would like to request that > http://git-scm.com/download provide a link to a tarball of the actual > git clone of the current repository with the repo parked on the latest > stable. What I mean is that for most of my systems I build git off of > source but I like to be able to just git pull when I want to update > them. Currently what I have to do is > - download the source tarball (or the rpm) > - make it > - install it > - use that git clone the real repo > - checkout the newest tag > - make configure > - configure > - make > - make install > > It'd be a lot cooler if I could just wget a full get repo on the latest > tag :) > > Just a request, Thanks > -Mike > -- > 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] 7+ messages in thread
end of thread, other threads:[~2009-03-29 15:31 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-03-27 17:09 Git Download/Bootstrap Suggestion Mike Gaffney 2009-03-27 23:21 ` Sverre Rabbelier 2009-03-28 16:09 ` Michael J Gruber 2009-03-28 16:15 ` Sverre Rabbelier 2009-03-28 16:24 ` Jacob Helwig 2009-03-29 15:29 ` Scott Chacon 2009-03-28 7:24 ` Dilip M
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).