* Repo of git linux-stable
@ 2015-05-02 11:01 Albino Biasutti Neto
2015-05-02 11:05 ` Richard Weinberger
0 siblings, 1 reply; 5+ messages in thread
From: Albino Biasutti Neto @ 2015-05-02 11:01 UTC (permalink / raw)
To: Linux Kernel
Hi
I compiled the kernel of git linux-stable[1], but was the version 4.1-rc1. Why ?
Should be the stable version 4.0.1 or not ? Help.
1 - https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/
Thanks,
Albino
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Repo of git linux-stable
2015-05-02 11:01 Repo of git linux-stable Albino Biasutti Neto
@ 2015-05-02 11:05 ` Richard Weinberger
2015-05-02 11:33 ` Albino Biasutti Neto
0 siblings, 1 reply; 5+ messages in thread
From: Richard Weinberger @ 2015-05-02 11:05 UTC (permalink / raw)
To: Albino Biasutti Neto; +Cc: Linux Kernel
On Sat, May 2, 2015 at 1:01 PM, Albino Biasutti Neto <bino@riseup.net> wrote:
> Hi
>
> I compiled the kernel of git linux-stable[1], but was the version 4.1-rc1. Why ?
>
> Should be the stable version 4.0.1 or not ? Help.
>
> 1 - https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/
Checkout v4.0.1. :)
--
Thanks,
//richard
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Repo of git linux-stable
2015-05-02 11:05 ` Richard Weinberger
@ 2015-05-02 11:33 ` Albino Biasutti Neto
2015-05-02 13:25 ` Theodore Ts'o
0 siblings, 1 reply; 5+ messages in thread
From: Albino Biasutti Neto @ 2015-05-02 11:33 UTC (permalink / raw)
To: Richard Weinberger; +Cc: Linux Kernel
2015-05-02 8:05 GMT-03:00 Richard Weinberger <richard.weinberger@gmail.com>:
> Checkout v4.0.1. :)
I downloaded now and compile, after was linux rc-1. I don't understand :-(
Albino
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Repo of git linux-stable
2015-05-02 11:33 ` Albino Biasutti Neto
@ 2015-05-02 13:25 ` Theodore Ts'o
2015-05-02 17:00 ` Albino Biasutti Neto
0 siblings, 1 reply; 5+ messages in thread
From: Theodore Ts'o @ 2015-05-02 13:25 UTC (permalink / raw)
To: Albino Biasutti Neto; +Cc: Richard Weinberger, Linux Kernel
On Sat, May 02, 2015 at 08:33:15AM -0300, Albino Biasutti Neto wrote:
> 2015-05-02 8:05 GMT-03:00 Richard Weinberger <richard.weinberger@gmail.com>:
> > Checkout v4.0.1. :)
>
> I downloaded now and compile, after was linux rc-1. I don't understand :-(
The linux stable tree contains many branches. You need to checkout the
one that you care about; that is, do you want the 4.0.y stable tree?
Or the 3.10.y stable tree? Or the 3.14.y stable tree? etc.
It sounds like you did a git clone of the stable tree, and by default
that landed you on the master branch. The master branch at the moment
happens to be pointing at 4.1rc1. I'm not sure why that's the case;
it probably has more to do with Greg K-H's internal workflows, but the
fact is the master branch is not what you want.
You need to explicitly checkout the stable branch that has what you
want. You can either checkout an explicit version, i.e., "git
checkout v4.0.1", or you can checkout the latest 4.0 stable release,
via "git checkout linux-4.0.y".
Or you can set up a local branch, via something like "git branch
my-4.0 linux-4.0.y; git checkout my-4.0". And then in the future a
"git pull" command will update your branch to have the latest 4.0.y
stable release. All of this is basic git commands; I suggest you find
a git tutorial and go through it.
Best regards,
- Ted
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Repo of git linux-stable
2015-05-02 13:25 ` Theodore Ts'o
@ 2015-05-02 17:00 ` Albino Biasutti Neto
0 siblings, 0 replies; 5+ messages in thread
From: Albino Biasutti Neto @ 2015-05-02 17:00 UTC (permalink / raw)
To: Theodore Ts'o, Albino Biasutti Neto, Richard Weinberger,
Linux Kernel
2015-05-02 10:25 GMT-03:00 Theodore Ts'o <tytso@mit.edu>:
> The linux stable tree contains many branches. You need to checkout the
> one that you care about; that is, do you want the 4.0.y stable tree?
> Or the 3.10.y stable tree? Or the 3.14.y stable tree? etc.
Now last version 4.0.1 tree.
> It sounds like you did a git clone of the stable tree, and by default
> that landed you on the master branch. The master branch at the moment
> happens to be pointing at 4.1rc1. I'm not sure why that's the case;
> it probably has more to do with Greg K-H's internal workflows, but the
> fact is the master branch is not what you want.
> You need to explicitly checkout the stable branch that has what you
> want. You can either checkout an explicit version, i.e., "git
> checkout v4.0.1", or you can checkout the latest 4.0 stable release,
> via "git checkout linux-4.0.y".
I am followed the tree in other directory. The problems was branch sure.
> Or you can set up a local branch, via something like "git branch
> my-4.0 linux-4.0.y; git checkout my-4.0". And then in the future a
> "git pull" command will update your branch to have the latest 4.0.y
> stable release. All of this is basic git commands; I suggest you find
> a git tutorial and go through it.
Yeah!
Thanks,
Albino
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-05-02 17:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-02 11:01 Repo of git linux-stable Albino Biasutti Neto
2015-05-02 11:05 ` Richard Weinberger
2015-05-02 11:33 ` Albino Biasutti Neto
2015-05-02 13:25 ` Theodore Ts'o
2015-05-02 17:00 ` Albino Biasutti Neto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox