sapling/hgext
Giorgos Keramidas b558cdc911 Tune a bit the extdiff toplevel comments/samples.
* Capitalize the first letter of all sentences

* Add an example for GNU diff(1) 'context diff' mode.

* Explain the requirement for separate cmd.xxx and opts.xxx
  options in .hgrc, which hopefully will guard against users
  trying to add:

      [extdiff]
      # Add a new Mercurial command called `cdiff', which calls
      # GNU diff(1) in 'context diff' mode.
      cmd.cdiff = diff -Nprc5

  which fails for recent crew builds with:

      $ hg cdiff .
      making snapshot of 1 files from rev 07dc4a569f4e
      making snapshot of 1 files from working dir
      diff -Nprc5: not found

  The correct way to do this is by separating the cmd.cdiff and
  opts.cdiff parts like this:

      [extdiff]
      # Add a new Mercurial command called `cdiff', which calls
      # GNU diff(1) in 'context diff' mode.
      cmd.cdiff = diff
      opts.cdiff = -Nprc5

  so add it as a new example and explicitly describe it in the
  extdiff comments.
2006-08-15 18:14:58 +03:00
..
__init__.py Re-add hgext/__init__.py 2005-09-29 12:49:01 -07:00
acl.py add acl extension, to limit who can push to subdirs of central repo. 2006-05-23 14:58:30 -07:00
bugzilla.py bugzilla: allow to map between committer email and bugzilla user name. 2006-05-18 09:23:43 -07:00
extdiff.py Tune a bit the extdiff toplevel comments/samples. 2006-08-15 18:14:58 +03:00
fetch.py fetch: fix test fail 2006-08-10 17:02:11 -07:00
gpg.py remove localrepository.changes. 2006-08-12 16:40:12 -07:00
hbisect.py remove localrepository.changes. 2006-08-12 16:40:12 -07:00
hgk.py merge with jeffpc 2006-08-15 11:22:29 +02:00
mq.py Allow qdel to delete multiple patches. 2006-08-14 11:41:08 -07:00
notify.py refactor text diff/patch code. 2006-08-12 16:13:27 -07:00
patchbomb.py mailbomb: add a comment and remove the bcc in a more pythonic way 2006-08-06 16:03:02 +02:00
win32text.py Rename mercurial.ext to hgext. 2005-09-21 15:17:24 -07:00