Merge command

- improved merge.autopush=ask
- fixed newline issues
- fixed: entries for new tasks got lost in undo.data
This commit is contained in:
Johannes Schlatow
2010-10-06 12:57:14 +02:00
parent 5c36013ddd
commit b041e54be6
3 changed files with 39 additions and 20 deletions

View File

@@ -136,7 +136,9 @@ sleep(1);
qx{../task rc:remote.rc 4 +gym}; # right_newer
# merge remote into local
copy("local/undo.data", "local/undo.save") or fail("copy local/undo.data to local/undo.save");
my $output_l = qx{../task rc:local.rc merge remote/undo.data};
rename("local/undo.save", "local/undo.data") or fail("rename local/undo.save in local/undo.data");
#check output
like ($output_l, qr/Running redo/, "local-merge finished");