All of lore.kernel.org
 help / color / mirror / Atom feed
From: dmurvihill@gmail.com (Dolan Murvihill)
To: kernelnewbies@lists.kernelnewbies.org
Subject: Which repo should I clone?
Date: Mon, 29 Jul 2013 21:06:36 -0700	[thread overview]
Message-ID: <51F73BCC.8040106@gmail.com> (raw)
In-Reply-To: <138283.1375101686@turing-police.cc.vt.edu>

Thanks everyone for the help. I just got linux-next :).

On 07/29/2013 05:41 AM, Valdis.Kletnieks at vt.edu wrote:
> On Mon, 29 Jul 2013 10:25:53 +0300, Alexandru Juncu said:
>
>> For a little more unstable version, there's the linux-next repo (I
>> think the address is this [4]).
> For some definition of "little more unstable'. :)  V3.10 is out, and
> Linus just tagged v3.11-rc3 a few hours ago, which means that 3.11 will
> escape in about a month.  Linux-next is, however, what will hopefully
> become 3.12 sometime around November.  Be prepared to find weird stuff
> and bugs - I manage to find several bugs per kernel release just running
> it on my laptop.
>
> Having said that, running linux-next is a great way to get a lot of
> kernel experience fairly fast, just from finding bugs and then reporting
> them, and seeing if you can figure out why you hit them (git bisect will
> become your best friend very quickly).  And the Linux community probably
> needs more good testers even more than it needs more coders...
>
> Take frequent backups of your test system - there's zero guarantee that
> linux-next won't have any ext4 or btrfs bugs that will eat your root filesystem
> or turn your dog green.
>
> Note that due to the way the linux-next repo is built (it's a nightly rebase),
> you'll get bad results if you just use 'git clone' and then try to 'git pull'
> it to update it.
>
> You need to do something like this:
>
> $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> $ git remote add linux-next git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
> $ git fetch linux-next
> $ git fetch --tags linux-next
>
> and then you have a copy of linux-next.  To update it, you want to:
>
> $ git remote update    (do *not* do a 'git pull', you'll be sorry :)
>
> Note that although every linux-next daily is tagged with a next-20130729 type tag,
> you can't effectively git bisect between two next-* tags, though you *can*
> bisect between one of Linus's v3.12-rc9 tags and a next-* tag (and if you know
> about git enough to figure out the Linus commit that was the base of
> (say) next-20130722 you can use that as one end of a bisect and next-20130729
> as the other end).

      reply	other threads:[~2013-07-30  4:06 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-29  3:39 Which repo should I clone? Dolan Murvihill
2013-07-29  7:21 ` Daniel Baluta
2013-07-29  7:25 ` Alexandru Juncu
2013-07-29 12:41   ` Valdis.Kletnieks at vt.edu
2013-07-30  4:06     ` Dolan Murvihill [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51F73BCC.8040106@gmail.com \
    --to=dmurvihill@gmail.com \
    --cc=kernelnewbies@lists.kernelnewbies.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.