tests/test-hgk.t
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Sat, 10 Nov 2012 02:19:20 +0100
changeset 18073 e411fd79ca69
parent 17959 542d133ea0a3
child 18807 cf72fd8b3072
permissions -rw-r--r--
obsolete: refuse to push divergent changeset As other troubles `unstable` and `bumped`. Followup patches may simplify the push code with unification of "obsolescence troubles" handling.

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 ..