How to Design XML Documents
Aug 27 2:51:29
Back online!
Jul 30 16:17:53
Response to "Knowledge Management 2.0"
Jul 18 2:45:52
Drupal Apps
Jun 3 7:17:00
Google Sites and the AJAX universe
May 21 1:18:39
Bazaar VCS is a really useful way of keeping and updating snapshots of any project.
While it's designed primarily for programming development, there's no real reason why it can't be applied as version control for any project -- say a collection of Word files.
The chief advantage of Bazaar is that while it can easily be scaled up to use with a whole team of people, it's lightweight enough to be used by a single person. More in the main article...
Here's the basics on getting started:
| bzr init | (sets up the .bzr folder) |
| bzr add * | (marks all files in the folder as versioned) |
| bzr status | (confirm pending changes) |
| bzr commit | (commit initial version) |
| bzr mv oldFile1 newFile2 | (rename a file, keeping track of the change in bzr) |
| bzr remove file1 | (remove a file from version control -- will show up as "unknown") |
| bzr ignore pathOrFile | (confirm pending changes) |
| bzr revert -r ver file1 file2 | (revert listed files to version ver) |