~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/tutorial.txt

  • Committer: Matthew Fuller
  • Date: 2006-06-04 23:17:48 UTC
  • mto: (1711.2.52 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1783.
  • Revision ID: fullermd@over-yonder.net-20060604231748-2174577737d7fbf6
Make status output actually look like status output.

Show diffs side-by-side

added added

removed removed

Lines of Context:
389
389
    % mkdir src
390
390
    % echo 'int main() {}' > src/simple.c
391
391
    % bzr add src
392
 
    % bzr status
393
 
    A       src/
394
 
    ?       src/simple.c
395
 
    % bzr add src/simple.c
396
 
    % bzr status
397
 
    A       src/
398
 
    A       src/simple.c
 
392
    added src
 
393
    added src/simple.c
 
394
    % bzr status
 
395
    added:
 
396
      src/
 
397
      src/simple.c
399
398
 
400
399
 
401
400
Deleting and removing files
415
414
    % bzr remove -v hello.txt
416
415
    ?       hello.txt
417
416
    % bzr status
418
 
    ?       hello.txt
419
 
    D       src/
420
 
    D       src/simple.c
 
417
    removed:
 
418
      hello.txt
 
419
      src/
 
420
      src/simple.c
 
421
    unknown:
 
422
      hello.txt
421
423
 
422
424
If you remove the wrong file by accident, you can use **bzr revert** to
423
425
restore it.