~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/solo_intro.txt

  • Committer: Vincent Ladeuil
  • Date: 2009-12-14 15:51:36 UTC
  • mto: (4894.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4895.
  • Revision ID: v.ladeuil+lp@free.fr-20091214155136-rf4nkqvxda9oiw4u
Cleanup tests and tweak the text displayed.

* bzrlib/tests/blackbox/test_update.py:
Fix imports and replace the assertContainsRe with assertEqualDiff
to make the test clearer, more robust and easier to debug.

* bzrlib/tests/commands/test_update.py: 
Fix imports.

* bzrlib/tests/blackbox/test_filtered_view_ops.py: 
Fix imports and strange accesses to base class methods.
(TestViewTreeOperations.test_view_on_update): Avoid os.chdir()
call, simplify string matching assertions.

* bzrlib/builtins.py:
(cmd_update.run): Fix spurious space, get rid of the final '/' for
the base path, don't add a final period (it's a legal char in a
path and would be annoying for people that like to copy/paste).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Going solo
 
2
==========
 
3
 
 
4
A personal productivity tool
 
5
----------------------------
 
6
 
 
7
Some tools are designed to make individuals productive (e.g. editors)
 
8
while other tools (e.g. back-end services) are focused on making teams
 
9
or whole companies more productive. Version control tools have
 
10
traditionally been in the latter camp.
 
11
 
 
12
One of the cool things about Bazaar is that it is so easy to setup
 
13
that version control can now be treated as a personal productivity tool.
 
14
If you wish to record changes to files for the purposes of checkpointing
 
15
good known states or tracking history, it is now easy to do so. This
 
16
chapter explains how.
 
17
 
 
18
The solo workflow
 
19
-----------------
 
20
 
 
21
If you are creating your own masterpiece, whether that be a software
 
22
project or a set of related documents, the typical workflow looks like this:
 
23
 
 
24
.. image:: images/workflows_single.png
 
25
 
 
26
Even if you will always be working as part of a team, the tasks covered
 
27
in this chapter will be the basis of what you'll be doing so it's a good
 
28
place to start.