git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Kernel Hacker's guide to git (updated)
@ 2005-07-15 17:36 Jeff Garzik
  2005-07-26  4:53 ` Why pack+unpack? Linus Torvalds
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff Garzik @ 2005-07-15 17:36 UTC (permalink / raw)
  To: Linux Kernel; +Cc: Git Mailing List, Dave Jones


I've updated my git quickstart guide at

	http://linux.yyz.us/git-howto.html

It now points to DaveJ's daily snapshots for the initial bootstrap 
tarball, is reorganized for better navigation, and other things.


Also, a bonus recipe:  how to import Linus's pack files (it's easy).

This recipe presumes that you have a vanilla-Linus repo 
(/repo/linux-2.6) and your own repo (/repo/myrepo-2.6).

$ cd /repo/myrepo-2.6
$ git-fsck-cache		# fsck, make sure we're OK
$ git pull /repo/linux-2.6/.git	# make sure we're up-to-date
$ cp -al ../linux-2.6/.git/objects/pack .git/objects
$ cp ../linux-2.6/.git/refs/tags/* .git/refs/tags
$ git-prune-packed
$ git-fsck-cache		# fsck #2, make sure we're OK

This recipe reduced my kernel.org sync from ~50,000 files to ~5,000 files.

	Jeff

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

end of thread, other threads:[~2005-07-26 16:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-15 17:36 Kernel Hacker's guide to git (updated) Jeff Garzik
2005-07-26  4:53 ` Why pack+unpack? Linus Torvalds
2005-07-26  5:13   ` Jeff Garzik
2005-07-26 16:44     ` Linus Torvalds
2005-07-26  6:14   ` Junio C Hamano

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).