Mercurial > hg
view tests/test-rebase-newancestor.t @ 13850:1209e1d52b68
hgweb: add base link to file log for paper and coal styles (issue2452)
author | Kevin Gessner <kevin@fogcreek.com> |
---|---|
date | Thu, 31 Mar 2011 15:49:53 -0400 |
parents | 6cc4b14fb76b |
children | f2719b387380 |
line wrap: on
line source
$ cat >> $HGRCPATH <<EOF > [extensions] > graphlog= > rebase= > > [alias] > tglog = log -G --template "{rev}: '{desc}' {branches}\n" > EOF $ hg init repo $ cd repo $ echo A > a $ echo >> a $ hg ci -Am A adding a $ echo B > a $ echo >> a $ hg ci -m B $ echo C > a $ echo >> a $ hg ci -m C $ hg up -q -C 0 $ echo D >> a $ hg ci -Am AD created new head $ hg tglog @ 3: 'AD' | | o 2: 'C' | | | o 1: 'B' |/ o 0: 'A' $ hg rebase -s 1 -d 3 merging a merging a saved backup bundle to $TESTTMP/repo/.hg/strip-backup/*-backup.hg (glob) $ hg tglog @ 3: 'C' | o 2: 'B' | o 1: 'AD' | o 0: 'A'