Bazaar/en
Aus LaborWiki
Bazaar is a source code (version-) control system -- not very different to CVS. If you are new to the concept of version control systems you may read the wikipedia article about Revision Control Systems.
Das Labor uses mainly subversion, but sometimes we use Bazaar for shared projects.
[Bearbeiten] Overview
- You can browse the source https://www.das-labor.org/trac-bzr/browser via Trac
- All projects that have been uploaded to sftp://das-labor.org/bzr will be shown there.
[Bearbeiten] Example
$ bzr branch https://www.das-labor.org/bzr/mtk-gps-ctrl
[... doing things with teh source ...]
$ bzr commit # commits are local, your modifications
# will not get published at this step
[... further working ...]
$ bzr commit
$ bzr push sftp://you@das-labor.org/bzr/mtk-gps-ctrl.you # publish your modifications
[Bearbeiten] Tips & Tricks
- use bzr bind URL to get your modifications automatically published when running commit
- use bzr commit -m "MESSAGE" for giving the commit message on the command line
