/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/developers/HACKING.txt

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
To answer these questions and more, take a moment to explore the
29
29
overall Breezy Platform. Here are some links to browse:
30
30
 
31
 
* The Plugins page on the Wiki - http://wiki.bazaar.canonical.com/BzrPlugins
 
31
.. FIXME: A new page is needed for brz plugins.
 
32
 
 
33
* The old Bazaar Plugins page on the Wiki - http://wiki.bazaar.canonical.com/BzrPlugins
32
34
 
33
35
* The Breezy product family on Launchpad - https://launchpad.net/breezy
34
36
 
205
207
 
206
208
* Patch Queue Manager - https://launchpad.net/pqm/
207
209
 
208
 
For further information, see <https://www.breezy-vcs.org/developers/>.
 
210
For further information, see https://www.breezy-vcs.org/developers/.
209
211
 
210
212
 
211
213
Preparing a Sandbox for Making Changes to Breezy
292
294
 
293
295
 
294
296
Automatically-generated API reference information is available at
295
 
<https://www.breezy-vcs.org/developers/api/>.
 
297
https://www.breezy-vcs.org/developers/api/.
296
298
 
297
299
See also the `Breezy Architectural Overview
298
300
<https://www.breezy-vcs.org/developers/overview.html>`_.
377
379
 
378
380
.. _pdb: http://docs.python.org/lib/debugger-commands.html
379
381
 
380
 
If the ``BZR_PDB`` environment variable is set
 
382
If the ``BRZ_PDB`` environment variable is set
381
383
then brz will go into pdb post-mortem mode when an unhandled exception
382
384
occurs.
383
385
 
386
388
Unix.  SIGBREAK is generated with Ctrl-Pause on Windows (some laptops have
387
389
this as Fn-Pause).  You can continue execution by typing ``c``.  This can
388
390
be disabled if necessary by setting the environment variable
389
 
``BZR_SIGQUIT_PDB=0``.
 
391
``BRZ_SIGQUIT_PDB=0``.
390
392
 
391
393
All tests inheriting from bzrlib.tests.TestCase can use ``self.debug()``
392
394
instead of the longer ``import pdb; pdb.set_trace()``. The former also works