Bazaar is a distributed version control system.
Let’s assume you have already some files you would like manage under a revision control system. The procedure to start using Bazaar to track (”import“) these files is as follow:
$ cd ~/project $ bzr init $ bzr add . $ bzr status $ bzr commit -m "All your code are belong to us"
Note that before committing, you can remove any unwanted directory or files by issuing one of the following command:
$ bzr remove tmp/ $ bzr remove test.old
The two above commands remove the directory (and its sub-tree) or file from the bazaar branch. It does not delete the working copy.