tests/test-hgk.t
author Kevin Bullock <kbullock@ringworld.org>
Wed, 17 Oct 2012 16:32:43 -0500
changeset 17816 19388ba75a06
parent 16913 f2719b387380
child 17959 542d133ea0a3
permissions -rw-r--r--
bookmarks: disallow bookmarks named 'tip', '.', or 'null' This makes bookmarks reject the same reserved names as tags and branches.

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
  committer test 0 0
  revision 0
  branch default
  
  adda

  $ cd ..