mirror of
https://github.com/facebook/sapling.git
synced 2024-12-28 23:54:12 +03:00
aac5ebea17
Summary: These now pass Reviewed By: xavierd Differential Revision: D19669584 fbshipit-source-id: dd4d374c3b373367138408ae86563ae44849690c
44 lines
880 B
Perl
44 lines
880 B
Perl
#chg-compatible
|
|
|
|
TODO: configure mutation
|
|
$ configure noevolution
|
|
#require rmcwd
|
|
|
|
Ensure that dirsync does not cause an abort when cwd goes missing
|
|
|
|
$ enable rebase dirsync
|
|
$ setconfig phases.publish=False
|
|
|
|
$ newrepo
|
|
$ drawdag <<'EOF'
|
|
> change # change/a = a
|
|
> |
|
|
> | delete # delete/dir/a = (removed)
|
|
> | /
|
|
> base # base/dir/a = a
|
|
> EOF
|
|
|
|
$ hg co -q $change
|
|
$ cd dir
|
|
|
|
$ hg rebase -s . -d $delete
|
|
rebasing 6f52fdb3a577 "change"
|
|
current directory was removed
|
|
(consider changing to repo root: $TESTTMP/repo1)
|
|
saved backup bundle to $TESTTMP/repo1/.hg/strip-backup/6f52fdb3a577-1340ca06-rebase.hg
|
|
|
|
$ cd -
|
|
$TESTTMP/repo1
|
|
$ hg status
|
|
|
|
$ hg log -Gr ":" -T "{node|short} {desc}"
|
|
@ 74e7da63e173 change
|
|
|
|
|
o 5f45087392e8 delete
|
|
|
|
|
o aa6caddcd04f base
|
|
|
|
$ hg rebase --abort
|
|
abort: no rebase in progress
|
|
[255]
|