~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-10-24 08:53:06 UTC
  • mfrom: (1185.16.90)
  • Revision ID: robertc@robertcollins.net-20051024085306-a3173edd40c87abd
mergeĀ fromĀ martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
      gpg_signing_command (defaults to gpg) and record a digital signature
39
39
      of your commit. (Robert Collins)
40
40
 
 
41
    * New sftp transport, based on Paramiko.  (Robey Pointer)
 
42
 
41
43
    * 'bzr pull' now accepts '--clobber' which will discard local changes
42
44
      and make this branch identical to the source branch. (Robert Collins)
43
45
 
 
46
    * Just give a quieter warning if a plugin can't be loaded, and 
 
47
      put the details in .bzr.log.  (Martin Pool)
 
48
 
44
49
    * 'bzr branch' will now set the branch-name to the last component of the
45
50
      output directory, if one was supplied.
46
51
 
123
128
      which allows direct access to the common case of 'get me this file
124
129
      from its branch'. (Robert Collins)
125
130
 
 
131
    * Transports can register using register_lazy_transport, and they 
 
132
      will be loaded when first used.  (Martin Pool)
 
133
 
126
134
    * 'pull' has been factored out of the command as WorkingTree.pull().
127
135
      A new option to WorkingTree.pull has been added, clobber, which will
128
136
      ignore diverged history and pull anyway.