git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Re: empty patch-2.6.13-git? patches on ftp.kernel.org
       [not found] <Pine.BSO.4.62.0508311527340.10416@rudy.mif.pg.gda.pl>
@ 2005-09-02  8:23 ` David Woodhouse
  2005-09-02  9:00   ` Linus Torvalds
  0 siblings, 1 reply; 5+ messages in thread
From: David Woodhouse @ 2005-09-02  8:23 UTC (permalink / raw)
  To: Tomasz K³oczko; +Cc: git, linux-kernel, Linus Torvalds

On Wed, 2005-08-31 at 15:34 +0200, Tomasz K³oczko wrote:
> Seems patches stored on ftp://ftp.kernel.org/pub/linux/kernel/v2.6/snapshots
> are empty (only logs are correct):

> -rw-r--r--    1 536      536            20 Aug 30 09:01 patch-2.6.13-git1.gz
> -rw-r--r--    1 536      536            20 Aug 31 09:01 patch-2.6.13-git2.gz

Hm. git-diff-cache now refuses to operate unless there's a local
'.git/refs' directory, even when working with a separate object
directory. So this doesn't work any more...

	rm -rf tmp-empty-tree
	mkdir -p tmp-empty-tree/.git
	cd tmp-empty-tree

	git-read-tree $CURCOMM
	git-checkout-cache Makefile
	perl -pi -e "s/EXTRAVERSION =.*/EXTRAVERSION = $EXTRAVERSION/" Makefile
	git-diff-cache -m -p $RELTREE | gzip -9 > $STAGE/patch-$CURNAME.gz

I've changed the script to create 'tmp-empty-tree/.git/refs' and
replaced 2.6.13-git[12] with real patches.

> Also it will be good move all patch-2.6.12* and patch-2.6.13-rc* files 
> from this directory to old subdirectory.

Done.

-- 
dwmw2

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: empty patch-2.6.13-git? patches on ftp.kernel.org
  2005-09-02  8:23 ` empty patch-2.6.13-git? patches on ftp.kernel.org David Woodhouse
@ 2005-09-02  9:00   ` Linus Torvalds
  2005-09-02  9:21     ` David Woodhouse
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Torvalds @ 2005-09-02  9:00 UTC (permalink / raw)
  To: David Woodhouse; +Cc: Tomasz K³oczko, git, linux-kernel



On Fri, 2 Sep 2005, David Woodhouse wrote:
> 
> 	rm -rf tmp-empty-tree
> 	mkdir -p tmp-empty-tree/.git
> 	cd tmp-empty-tree

Ahh. Please change that to

	rm -rf tmp-empty-tree
	mkdir tmp-empty-tree
	cd tmp-empty-tree
	git-init-db

because otherwise you'll almost certainly hit something else later on..

		Linus

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: empty patch-2.6.13-git? patches on ftp.kernel.org
  2005-09-02  9:00   ` Linus Torvalds
@ 2005-09-02  9:21     ` David Woodhouse
  2005-09-04 15:31       ` Jan Dittmer
  0 siblings, 1 reply; 5+ messages in thread
From: David Woodhouse @ 2005-09-02  9:21 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Tomasz K³oczko, git, linux-kernel

On Fri, 2005-09-02 at 02:00 -0700, Linus Torvalds wrote:
> Ahh. Please change that to
> 
>         rm -rf tmp-empty-tree
>         mkdir tmp-empty-tree
>         cd tmp-empty-tree
>         git-init-db
> 
> because otherwise you'll almost certainly hit something else later
> on..

OK, done. 

-- 
dwmw2

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: empty patch-2.6.13-git? patches on ftp.kernel.org
  2005-09-02  9:21     ` David Woodhouse
@ 2005-09-04 15:31       ` Jan Dittmer
  2005-09-04 15:55         ` David Woodhouse
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Dittmer @ 2005-09-04 15:31 UTC (permalink / raw)
  To: David Woodhouse; +Cc: Linus Torvalds, Tomasz K³oczko, git, linux-kernel

David Woodhouse wrote:
> On Fri, 2005-09-02 at 02:00 -0700, Linus Torvalds wrote:
> 
>>Ahh. Please change that to
>>
>>        rm -rf tmp-empty-tree
>>        mkdir tmp-empty-tree
>>        cd tmp-empty-tree
>>        git-init-db
>>
>>because otherwise you'll almost certainly hit something else later
>>on..
> 
> 
> OK, done. 
> 

-git4 is again empty

 patch-2.6.13-git4.bz2      03-Sep-2005 02:03   14
[   ] patch-2.6.13-git4.bz2.sign 03-Sep-2005 02:03  248
[   ] patch-2.6.13-git4.gz       03-Sep-2005 02:03   20
[   ] patch-2.6.13-git4.gz.sign  03-Sep-2005 02:03  248
[   ] patch-2.6.13-git4.id       03-Sep-2005 02:01   41
[   ] patch-2.6.13-git4.log      03-Sep-2005 02:03  526K
[   ] patch-2.6.13-git4.sign     03-Sep-2005 02:03  248

-- 
Jan

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: empty patch-2.6.13-git? patches on ftp.kernel.org
  2005-09-04 15:31       ` Jan Dittmer
@ 2005-09-04 15:55         ` David Woodhouse
  0 siblings, 0 replies; 5+ messages in thread
From: David Woodhouse @ 2005-09-04 15:55 UTC (permalink / raw)
  To: Jan Dittmer; +Cc: Linus Torvalds, Tomasz K³oczko, git, linux-kernel

On Sun, 2005-09-04 at 17:31 +0200, Jan Dittmer wrote:
> David Woodhouse wrote:
> > On Fri, 2005-09-02 at 02:00 -0700, Linus Torvalds wrote:
> > 
> >>Ahh. Please change that to
> >>
> >>        rm -rf tmp-empty-tree
> >>        mkdir tmp-empty-tree
> >>        cd tmp-empty-tree
> >>        git-init-db
> >>
> >>because otherwise you'll almost certainly hit something else later
> >>on..
> > 
> > 
> > OK, done. 
> > 
> 
> -git4 is again empty

Hm, yes.

+ rm -rf tmp-empty-tree
+ mkdir tmp-empty-tree
+ cd tmp-empty-tree
+ git-init-db
/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/branches/: Permission denied
+ unset GIT_DIR
+ git-read-tree f505380ba7b98ec97bf25300c2a58aeae903530b
fatal: unable to create new cachefile

Fixed now; thanks.

-- 
dwmw2

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-09-04 15:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <Pine.BSO.4.62.0508311527340.10416@rudy.mif.pg.gda.pl>
2005-09-02  8:23 ` empty patch-2.6.13-git? patches on ftp.kernel.org David Woodhouse
2005-09-02  9:00   ` Linus Torvalds
2005-09-02  9:21     ` David Woodhouse
2005-09-04 15:31       ` Jan Dittmer
2005-09-04 15:55         ` David Woodhouse

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).