Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Bazaar considered harmful

Name: Anonymous 2010-03-15 5:16

The documentation of Bazaar[1] states that Bazaar is slower than Git, has fewer features than Git, takes up more space than Git, is not as well documented as Git, is only used by newbies, and so on. It even says they don't believe Bazaar could be more successful than other SCM systems.

Clearly the Bazaar documentation must have been written by someone who is forced to use Bazaar but secretly loves Git.

_____
[1] http://doc.bazaar.canonical.com/migration/en/why-switch-to-bazaar.html

Name: Anonymous 2010-03-16 11:02

>>12
Troll, but I'll bite.

Do they just share their repository over LAN and pull from eachother?

Yes, exactly! Or they set up a computer on the LAN to be a server, just like you would in SVN, and then push and pull from that, just like you "checkout" and "checkin" things with traditional SCMs, only they're pulling and pushing multiple commits to the master server at a time. It's not hard.


$ git clone ssh://192.168.1.76/product.git
$ cd product
$ make changes
$ git commit -a -m description of changes
$ git push
Password:
$ pause for some time
$ git pull
git tells you what changes have been made to which files
$ more changes
$ git commit -a -m another commit description
$ git push
Password:
$ done!


Just look how simple that is!

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List