Slashdot Mirror


Linus Tries Out BitKeeper

Flammon writes: "Linus has been overloaded with patches for a while and recently the issue started to become hot again. In an unprecedented move, Linus has started using BitKeeper, as reported by Linux Today. The benefits of BitKeeper are already showing from the large amount of detail provided in the latest unstable kernel pre-release." eirikref adds: "Read Linus' own statement and take a look at the BK web interface."

16 of 248 comments (clear)

  1. PPC Kernel by NewbieSpaz · · Score: 4, Informative

    IIRC, the PPC Kernel is maintained through BitKeeper, and has been for quite some time.

    --
    ------
    Random, useless fact: I type in startx entirely with my left hand.
    1. Re:PPC Kernel by NewbieSpaz · · Score: 5, Informative

      Here is some Info on it...

      --
      ------
      Random, useless fact: I type in startx entirely with my left hand.
  2. Re:Keep the terse changelogs by reaper20 · · Score: 3, Informative

    Looks like I spoke to soon, looks like they will be maintained at http://linux.bkbits.net

  3. It's a floor wax and a dessert topping by Anonymous Coward · · Score: 5, Informative

    Bitkeeper is available under two licenses. The commercial license costs money and comes with support. The non-commercial license does not cost money., but it has a requirement that all your ChangeLogs must be sent to a world-readable server controlled by BitMover.

    Bitkeeper source is available, but it's illegal to redistribute a version of Bitkeeper with the mandatory open logging stripped out.

    Bitmover Inc. wants to avoid the situation where people use bitkeeper like gcc, taking free software tools but not giving anything back. You can pay Bitmover money, or you can use a free-as-in-beer version that is suitable for software libre and unsuitable for closed-source software.

  4. Re:Linus not getting enough respect by Anonymous Coward · · Score: 0, Informative

    psst ... turn on the sarcasm detector!

  5. Re:But surely by Anonymous Coward · · Score: 1, Informative

    The FreeBSD, NetBSD and OpenBSD projects seem to meet those criterion and are all using CVS. Sure there is stuff they wish they had, but they seem to do pretty well with CVS. Better IMNSHO than with out, very much so since I can get complete coppies of the Project repos.

  6. BitKeeper gives you the answer: by Otis_INF · · Score: 4, Informative

    http://bitkeeper.com/Products.Comparisons.Perforce .html

    Allthough this is marketing poop so it should be taken with a fine grain of salt, it might answer your question.

    --
    Never underestimate the relief of true separation of Religion and State.
  7. Re:Is Linus still working at transmeta ? by gmack · · Score: 2, Informative

    There are seperate forks: 2.2.x and 2.4.x. Neither are maintained by Linus.

  8. Re:I know it's off topic... but I gotta know by ethereal · · Score: 2, Informative

    Drivers are distributed with the kernel for two reasons:

    • It's convenient for users to get it all in one package
    • It's convenient for developers to keep it all together so that if the core interfaces change, the driver change will happen quickly.

    The USB drivers aren't overly entangled with the real innards of the kernel, they just happen to be shipped in the same tarball.

    --

    Your right to not believe: Americans United for Separation of Church and

  9. "A Critique of the BitKeeper License" by Jack Moff by CondeZer0 · · Score: 5, Informative

    I found very interesting a document from Jack Moffitt (of xiph.org fame,
    one of the main Ogg developers and one of the Icecast Core Developers),
    about some problems he had with the BK license when he was using it
    for hosting Icecast:

    "A Critique of the BitKeeper License"
    http://www.mit.edu/afs/athena/user/x/i/xiphmont/Pu blic/critique.html


    You might also find interesting his post on the matter to the
    "Icecast Developer Discussion List":

    http://www.xiph.org/archives/icecast-dev/0067.html

    I hope that he will post here his his experience using BK
    in an Open/Free-source project...

    Best regards

    \\Uriel



    P.S.: Yea, I know I'm karma whoring, but I'm sure many people will find this interesting,
    specially in casse Jack dont post to this history latter

    --
    "When in doubt, use brute force." Ken Thompson
  10. Re:Which is Best? by eli173 · · Score: 2, Informative

    > Should I move from CVS and, if so, which is best?

    That depends, of course. ;)
    But for me, the answer is Subversion (http://subversion.tigris.org/), once it is done. Its design goal is to be a replacement for CVS... and to do that, they are releasing it under a BSD-style license.
    And that decision will make it useful in the *BSD's, Debian, and any other OS.
    They aren't breaking new ground, just making a better CVS--and that is exactly what I need.

    Eli

  11. Re:But surely by Paul+Jakma · · Score: 4, Informative

    No,

    if you read the recent thread on l-k, it's because in private Linus has been talking for quite a while to the bitkeeper people about what he wanted from bitkeeper before he'd use it, and the bitkeeper people have gone and implemented most of it, so Linus agreed to use it for a while.

    --
    I use Friend/Foe + mod-point modifiers as a karma/reputation system.
  12. Re:Which is Best? by krokodil · · Score: 3, Informative

    > If CVS works for you, and you have no complaints or
    > issues, then don't switch.

    I really hate this kind of attitude. Along with "Use what you are most comfortable with". It kills any desire to learn and use new stuff and to impove.

    I say try it out and see if it worth switching to new CM.

  13. Re:Which is Best? by William+Tanksley · · Score: 3, Informative

    If you're happy with CVS, stay with it at least until Subversion is finished -- svn is designed to be a replacement for CVS which fixes all the annoying oddities.

    If you're not happy with CVS, or have been wondering why CVS doesn't do some specific things, check out some of the really different alternatives (but be prepared for some differences):

    - "Aegis" supports TestFirstProgramming. In order to submit a change, you must provide a test which passes with the change, and fails to pass without the change. Furthermore, your change must not break any of the old tests. Extremely powerful for group programming, and useful for single-person programming.
    - "BitKeeper" provides an attractive GUI and powerful tools, designed by a professional community. It provides very powerful support for branches, and allows you to use all the convenience of the full version-controlled repository without having to have all your checked-in changes messing up the main repository.
    - "arch" may have a simpler interface right now, but it makes up for it with a very impressive model of distributed repositories. Like BitKeeper, you can make a local repository in order to make changes you want to see; unlike BitKeeper, that local repository is a full repository in its own right, and can be served independantly. It supports very sophisticated merging, so that you can merge your local repo with someone else who happened to start up their own local repo based on the same master repo; you can, of course, also merge with the master, and the master can choose to merge with your work.

    I am impressed with the variety of version control systems which are now coming into their own. Very nice to see.

    -Billy

  14. Re:Detail in changelog by rgmoore · · Score: 2, Informative

    One other potential advantage is that it clearly presents what kind of changes Linus is interested in accepting. One reported big problem in the past is that Linus has a tendency to drop patches that change too much or have an insufficient explanation of what they do. By making it obvious what kind of changes he does accept and how the messages describing them should be written, it will make it easier for people to learn how to write a change the Linus will accept.

    --

    There's no point in questioning authority if you aren't going to listen to the answers.

  15. Re:Where are Open Logging Repositories stored? by lm · · Score: 2, Informative

    www.bkbits.net is a free hosting service we provide.
    It is not the same as openlogging, those logs are on www.openlogging.org.
    I got an OK from Linus to put his trees on linux.bkbits.net,
    you may go poke at them there.

    Note that bkbits.net sort of looks like it might evolve into sourceforge
    but that's not our intent. What we want is to provide that infrastructure
    so that different people can host their own projects.
    bkbits.net is a cache, you go there to fill your cache but then you have everything.
    BitKeeper replicates the metadata so you are nowhere near as reliant on a centralized server
    like sourceforge.