[16:19] Another tech talk about git: http://youtube.com/watch?v=8dhZ9BXQgc4 (http://chi-v14.chi.youtube.com/get_video?video_id=8dhZ9BXQgc4) [18:03] ion_: somewhat off-topic for here? :) [18:04] Yes. :-P [18:06] git is nasty [18:07] I’ve fallen in love with it. :-) [18:07] really, why? [18:08] I've yet to see anything it can do that other distributed vcs's can, except make me feel like I'm back in the dark ages of revision control (the Arch days) [18:09] It makes branches soooo nicely. I also like how you can ‘add’ files to the next commit while developing something and then finally do the commit. In the others, you’d have to collect the list of files to be committed while running the actual commit. [18:10] makes branches nicely? [18:10] nicer than "cp -a" ? [18:10] Hugely nicer than having each branch in a separate directory, adequately nicer than ‘bzr switch’. [18:10] it's identical to "bzr switch" isn't it? [18:11] (assuming the branches share the same repository) [18:11] Basically, but with a nicer UI. [18:11] IME, the git UI is the worst thing about it [18:11] like why would you ever want to make changes to something and not have them committed? [18:12] which is the default behaviour of git [18:12] Debugging lines [18:12] so by default, most of the code you write is debugging lines [18:12] and you want to only commit rarely? [18:12] I just like how it works more. Not everyone might. [18:12] that's a very kernel-optimised use case [18:12] git commit -a isn’t very hard to write when you want what e.g. ‘bzr commit’ does. [18:13] I find the bzr model of "shelve the debugging lines while commit" much nicer [18:13] I also find it subjectively faster than bzr, but i haven’t done any actual benchmarking. [18:14] that was certainly true of network operations for older bzr versions [18:14] I don't think it's been true for a while [18:14] my main problem with git is it's optimised to assume that most of the operations you do are merges [18:14] and that you rarely commit any changes you make to the source tree [18:14] which is totally the opposite of any normal code tree [18:15] almost all changes I make are to be committed, and I rarely get any to merge :) [18:15] so git makes it harder for me to work with it [18:15] and why use something that makes it hard when there are easy alternatives that are just as powerful [18:16] I also like that bzr is written in a simple language like Python [18:16] which makes it delightfully extendable [18:16] there's bzr plugins to give you git-like commit workflow [18:16] and bzr plugins to add rebase, etc. [18:17] but because they're written as extensions to the bzr code, they feel like you're still using bzr [18:17] they still work the same way