[08:18] hello guys [08:19] I have a directory that is owned by www-data and www-data group, how do I manage a bzr branch when new files are constantly being generated and I cannot be expected to chmod g+w ./* -R every time [15:09] guys, how does one update thew working tree? [15:10] Wiz_KeeD: "bzr update" [15:10] I tried that it does not update the working tree, still empty [15:10] I moved everything out and did revert -r latest_revision [15:10] and it worked [15:11] so it does depend on what you mean by "update" [15:15] update the working tree precisely to what the revision has [15:17] just "bzr revert" should do that [15:23] with --no-backup so i don't have a lot of crap to deal with? [15:26] it should only create backup files for files that have actually changed [15:38] yeah they would be a lot [20:38] Is there a way to set something in bazaar.conf (or elsewhere) that makes "bzr diff" automatically do the same thing as "bzr cdiff"? cdiff isn't intuitive enough for me. [20:38] "bzr diff" is apparently not an allowed bash alias name because of the space. [20:38] jfcaron: yes, add an alias for 'diff' to 'diff --color' [20:38] jfcaron: a bzr alias, rather than a bash alias [20:39] What's the difference between diff --color and cdiff? [20:40] they should be the same thing [20:40] you can create an alias to cdiff too [20:40] Cool, thanks. [20:41] And it's a global setting in my bazaar.conf, as I wanted.