tests/test-hgk.t
author Bryan O'Sullivan <bryano@fb.com>
Thu, 14 Mar 2013 16:50:53 -0700
changeset 18768 e3e601969ba1
parent 17959 542d133ea0a3
child 18807 cf72fd8b3072
permissions -rw-r--r--
bash_completion: allow remove to complete normal files Previously, we only completed files that had already been manually deleted. That behaviour made no sense. We now complete unmodified, modified, and deleted files.

Minimal hgk check

  $ echo "[extensions]" >> $HGRCPATH
  $ echo "hgk=" >> $HGRCPATH
  $ hg init repo
  $ cd repo
  $ echo a > a
  $ hg ci -Am adda
  adding a
  $ hg debug-cat-file commit 0
  tree a0c8bcbbb45c
  parent 000000000000
  author test 0 0
  revision 0
  branch default
  
  adda

  $ cd ..