* dscape git @ 2006-07-17 14:15 Tomas Winkler 2006-07-17 14:57 ` Erik Mouw 0 siblings, 1 reply; 5+ messages in thread From: Tomas Winkler @ 2006-07-17 14:15 UTC (permalink / raw) To: netdev I've tried to clone dscape git and I got the error bellow. I hade no problem go get other trees. I'm new to git so maybe I didn't use correct switches Command Line: git clone http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap e.git/ dscape Thanks for help got 0cdcef84239e5f1d60310883688b7aeca5278875 error: The requested file was not found (curl_result = 22, http_code = 503, sha1 = 27fd37621255799602d74e94d670ff7a1658d40a) Getting pack list for http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap e.git/ got 80f18b79eacc07319afe473023a5358cfbc11ae6 Getting pack list for http://www.kernel.or error: The requested file was not found error: Unable to find 27fd37621255799602d74e94d670ff7a1658d40a under http://www. kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git/ Cannot obtain needed blob 27fd37621255799602d74e94d670ff7a1658d40a while processing commit a495f8ec7590d6df5edc36bff419f25b8c3440de. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: dscape git 2006-07-17 14:15 dscape git Tomas Winkler @ 2006-07-17 14:57 ` Erik Mouw 2006-07-17 15:15 ` Tomas Winkler 0 siblings, 1 reply; 5+ messages in thread From: Erik Mouw @ 2006-07-17 14:57 UTC (permalink / raw) To: Tomas Winkler; +Cc: netdev On Mon, Jul 17, 2006 at 07:15:03AM -0700, Tomas Winkler wrote: > I've tried to clone dscape git and I got the error > bellow. I hade no problem go get other trees. I'm new > to git so maybe I didn't use correct switches > Command Line: git clone > http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap > e.git/ dscape When available, use the git protocol. It's both faster and more efficient. > Thanks for help > > got 0cdcef84239e5f1d60310883688b7aeca5278875 > error: The requested file was not found (curl_result = > 22, http_code = 503, sha1 > = 27fd37621255799602d74e94d670ff7a1658d40a) > Getting pack list for > http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap > e.git/ > got 80f18b79eacc07319afe473023a5358cfbc11ae6 > Getting pack list for http://www.kernel.or > error: The requested file was not found > error: Unable to find > 27fd37621255799602d74e94d670ff7a1658d40a under > http://www. > kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git/ > Cannot obtain needed blob > 27fd37621255799602d74e94d670ff7a1658d40a > while processing commit a495f8ec7590d6df5edc36bff419f25b8c3440de. Could be that www.kernel.org didn't yet fully sync up with master.kernel.org. Just wait, it usually gets corrected in half an hour. I just succesfully clone'd dscape with the following command line: git clone --reference linux-2.6 \ git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git dscape The "--reference" parameter tells git that I have a local repository called "linux-2.6" (which just follow Linus' 2.6 tree) which can be used to pull the shared git objects from. Saves quite some disk space. Erik -- +-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 -- | Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: dscape git 2006-07-17 14:57 ` Erik Mouw @ 2006-07-17 15:15 ` Tomas Winkler 2006-07-17 16:14 ` Tomas Winkler 0 siblings, 1 reply; 5+ messages in thread From: Tomas Winkler @ 2006-07-17 15:15 UTC (permalink / raw) To: Erik Mouw; +Cc: netdev First I'm behind the firewall second other gits worked just fine. Thanks --- Erik Mouw <erik@harddisk-recovery.com> wrote: > On Mon, Jul 17, 2006 at 07:15:03AM -0700, Tomas > Winkler wrote: > > I've tried to clone dscape git and I got the error > > bellow. I hade no problem go get other trees. I'm > new > > to git so maybe I didn't use correct switches > > Command Line: git clone > > > http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap > > e.git/ dscape > > When available, use the git protocol. It's both > faster and more > efficient. > > > Thanks for help > > > > got 0cdcef84239e5f1d60310883688b7aeca5278875 > > error: The requested file was not found > (curl_result = > > 22, http_code = 503, sha1 > > = 27fd37621255799602d74e94d670ff7a1658d40a) > > Getting pack list for > > > http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap > > e.git/ > > got 80f18b79eacc07319afe473023a5358cfbc11ae6 > > Getting pack list for http://www.kernel.or > > error: The requested file was not found > > error: Unable to find > > 27fd37621255799602d74e94d670ff7a1658d40a under > > http://www. > > > kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git/ > > Cannot obtain needed blob > > 27fd37621255799602d74e94d670ff7a1658d40a > > while processing commit > a495f8ec7590d6df5edc36bff419f25b8c3440de. > > Could be that www.kernel.org didn't yet fully sync > up with > master.kernel.org. Just wait, it usually gets > corrected in half an > hour. > > I just succesfully clone'd dscape with the following > command line: > > git clone --reference linux-2.6 \ > > git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git > dscape > > The "--reference" parameter tells git that I have a > local repository > called "linux-2.6" (which just follow Linus' 2.6 > tree) which can be > used to pull the shared git objects from. Saves > quite some disk space. > > > Erik > > -- > +-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 > 370 12 90 -- > | Lab address: Delftechpark 26, 2628 XH, Delft, The > Netherlands > - > To unsubscribe from this list: send the line > "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at > http://vger.kernel.org/majordomo-info.html > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: dscape git 2006-07-17 15:15 ` Tomas Winkler @ 2006-07-17 16:14 ` Tomas Winkler 2006-07-18 16:31 ` Jiri Benc 0 siblings, 1 reply; 5+ messages in thread From: Tomas Winkler @ 2006-07-17 16:14 UTC (permalink / raw) To: Erik Mouw; +Cc: netdev Hmm, I've missed the second part of you email. The solution you've suggested has worked. Thanks Anyhow if this is a problem of sync then it last for 2 days already. Thanks a lot --- Tomas Winkler <tomas_bw@yahoo.com> wrote: > First I'm behind the firewall second other gits > worked > just fine. > Thanks > > --- Erik Mouw <erik@harddisk-recovery.com> wrote: > > > On Mon, Jul 17, 2006 at 07:15:03AM -0700, Tomas > > Winkler wrote: > > > I've tried to clone dscape git and I got the > error > > > bellow. I hade no problem go get other trees. > I'm > > new > > > to git so maybe I didn't use correct switches > > > Command Line: git clone > > > > > > http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap > > > e.git/ dscape > > > > When available, use the git protocol. It's both > > faster and more > > efficient. > > > > > Thanks for help > > > > > > got 0cdcef84239e5f1d60310883688b7aeca5278875 > > > error: The requested file was not found > > (curl_result = > > > 22, http_code = 503, sha1 > > > = 27fd37621255799602d74e94d670ff7a1658d40a) > > > Getting pack list for > > > > > > http://www.kernel.org/pub/scm/linux/kernel/git/jbenc/dscap > > > e.git/ > > > got 80f18b79eacc07319afe473023a5358cfbc11ae6 > > > Getting pack list for http://www.kernel.or > > > error: The requested file was not found > > > error: Unable to find > > > 27fd37621255799602d74e94d670ff7a1658d40a under > > > http://www. > > > > > > kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git/ > > > Cannot obtain needed blob > > > 27fd37621255799602d74e94d670ff7a1658d40a > > > while processing commit > > a495f8ec7590d6df5edc36bff419f25b8c3440de. > > > > Could be that www.kernel.org didn't yet fully sync > > up with > > master.kernel.org. Just wait, it usually gets > > corrected in half an > > hour. > > > > I just succesfully clone'd dscape with the > following > > command line: > > > > git clone --reference linux-2.6 \ > > > > > git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git > > dscape > > > > The "--reference" parameter tells git that I have > a > > local repository > > called "linux-2.6" (which just follow Linus' 2.6 > > tree) which can be > > used to pull the shared git objects from. Saves > > quite some disk space. > > > > > > Erik > > > > -- > > +-- Erik Mouw -- www.harddisk-recovery.com -- +31 > 70 > > 370 12 90 -- > > | Lab address: Delftechpark 26, 2628 XH, Delft, > The > > Netherlands > > - > > To unsubscribe from this list: send the line > > "unsubscribe netdev" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at > > http://vger.kernel.org/majordomo-info.html > > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam > protection around > http://mail.yahoo.com > - > To unsubscribe from this list: send the line > "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at > http://vger.kernel.org/majordomo-info.html > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: dscape git 2006-07-17 16:14 ` Tomas Winkler @ 2006-07-18 16:31 ` Jiri Benc 0 siblings, 0 replies; 5+ messages in thread From: Jiri Benc @ 2006-07-18 16:31 UTC (permalink / raw) To: Tomas Winkler; +Cc: Erik Mouw, netdev On Mon, 17 Jul 2006 09:14:39 -0700 (PDT), Tomas Winkler wrote: > Hmm, I've missed the second part of you email. > The solution you've suggested has worked. > Thanks > Anyhow if this is a problem of sync then it last for 2 > days already. This is because I'm using Linus' repository as a reference repository to save space on kernel.org. Use --reference parameter as suggested. However, if you are new with git I need to warn you: it's not easy to track my tree. I rebase it frequently and it contains several branches, some of whom disappear and reappear from time to time. This means you cannot always simply pull from my tree to obtain updates (for a solution, see below). Note that it's always safe to try pulling (git-pull git://git.kernel.org/.../dscape.git). If I haven't rebased the tree it will succeed; if the tree was rebased it will fail, give you error message and leave your tree in a state it was before. If the pull fails, you can re-clone the tree. But it is time and bandwidth consuming, so it is not recommended. === How to track dscape.git tree === 1. Cloning the tree 1.1. Clone John Linville's wireless-dev.git tree: git-clone git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-dev.git 1.2. Create a new branch named 'dscape': git-branch dscape 1.3. Checkout your new 'dscape' branch: git-checkout dscape 1.4. Pull from 'master' branch of dscape.git tree (in the rare case when this fails with a conflict, send me a note, I'll fix that): git-pull git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git master 1.5. You may pull from other branches of dscape.git tree now (e.g. 'devel' branch may be interesting). Be aware that branches other than 'master' may contain highly experimental code. 2. Updating the tree 2.1 Try pulling from 'master' branch of dscape.git tree: git-pull git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/dscape.git master 2.2 If this succeeded (message informing you that merge was successful or there was nothing to merge), you're done (and don't follow next steps). If this didn't succeed, you need to recreate your 'dscape' branch - follow next steps. 2.3 Checkout 'master' branch of your tree: git-checkout master 2.4 Delete 'dscape' branch: git-branch -D dscape 2.5 Pull from John Linville's tree (optional, but will speed up things on next update): git-pull git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-dev.git 2.6 Continue from step 1.2. Thanks, Jiri -- Jiri Benc SUSE Labs ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-07-18 16:31 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2006-07-17 14:15 dscape git Tomas Winkler 2006-07-17 14:57 ` Erik Mouw 2006-07-17 15:15 ` Tomas Winkler 2006-07-17 16:14 ` Tomas Winkler 2006-07-18 16:31 ` Jiri Benc
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).