Reputation: 990
I am working on git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git. According to my understanding, it rebases every day to mainline kernel branch and merges all the branches. So, the logs of a previous linux-next version cannot be seen in the current version released. Is there a way to get the logs of the previous versions too.
Upvotes: 0
Views: 115
Reputation: 36
Each linux-next release is tagged like next-YYYYMMDD (so today's will be next-20190228). The last three month's worth of releases are kept in the linux-next tree you cite above and all the rest are archived in the linux-next-history tree (https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next-history.git).
Upvotes: 2