1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
|
$ checkundo()
> {
> if [ -f .hg/store/undo ]; then
> echo ".hg/store/undo still exists after $1"
> fi
> }
$ cat <<EOF >> $HGRCPATH
> [extensions]
> mq =
> [mq]
> plain = true
> EOF
help
$ hg help mq
mq extension - manage a stack of patches
This extension lets you work with a stack of patches in a Mercurial
repository. It manages two stacks of patches - all known patches, and applied
patches (subset of known patches).
Known patches are represented as patch files in the .hg/patches directory.
Applied patches are both patch files and changesets.
Common tasks (use 'hg help command' for more details):
create new patch qnew
import existing patch qimport
print patch series qseries
print applied patches qapplied
add known patch to applied stack qpush
remove patch from applied stack qpop
refresh contents of top applied patch qrefresh
By default, mq will automatically use git patches when required to avoid
losing file mode changes, copy records, binary files or empty files creations
or deletions. This behavior can be configured with:
[mq]
git = auto/keep/yes/no
If set to 'keep', mq will obey the [diff] section configuration while
preserving existing git patches upon qrefresh. If set to 'yes' or 'no', mq
will override the [diff] section and always generate git or regular patches,
possibly losing data in the second case.
It may be desirable for mq changesets to be kept in the secret phase (see 'hg
help phases'), which can be enabled with the following setting:
[mq]
secret = True
You will by default be managing a patch queue named "patches". You can create
other, independent patch queues with the 'hg qqueue' command.
If the working directory contains uncommitted files, qpush, qpop and qgoto
abort immediately. If -f/--force is used, the changes are discarded. Setting:
[mq]
keepchanges = True
make them behave as if --keep-changes were passed, and non-conflicting local
changes will be tolerated and preserved. If incompatible options such as
-f/--force or --exact are passed, this setting is ignored.
This extension used to provide a strip command. This command now lives in the
strip extension.
list of commands:
qapplied print the patches already applied
qclone clone main and patch repository at same time
qdelete remove patches from queue
qdiff diff of the current patch and subsequent modifications
qfinish move applied patches into repository history
qfold fold the named patches into the current patch
qgoto push or pop patches until named patch is at top of stack
qguard set or print guards for a patch
qheader print the header of the topmost or specified patch
qimport import a patch or existing changeset
qnew create a new patch
qnext print the name of the next pushable patch
qpop pop the current patch off the stack
qprev print the name of the preceding applied patch
qpush push the next patch onto the stack
qqueue manage multiple patch queues
qrefresh update the current patch
qrename rename a patch
qselect set or print guarded patches to push
qseries print the entire series file
qtop print the name of the current patch
qunapplied print the patches not yet applied
(use 'hg help -v mq' to show built-in aliases and global options)
$ hg init a
$ cd a
$ echo a > a
$ hg ci -Ama
adding a
$ hg clone . ../k
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ mkdir b
$ echo z > b/z
$ hg ci -Ama
adding b/z
qinit
$ hg qinit
$ cd ..
$ hg init b
-R qinit
$ hg -R b qinit
$ hg init c
qinit -c
$ hg --cwd c qinit -c
$ hg -R c/.hg/patches st
A .hgignore
A series
qinit; qinit -c
$ hg init d
$ cd d
$ hg qinit
$ hg qinit -c
qinit -c should create both files if they don't exist
$ cat .hg/patches/.hgignore
^\.hg
^\.mq
syntax: glob
status
guards
$ cat .hg/patches/series
$ hg qinit -c
abort: repository $TESTTMP/d/.hg/patches already exists! (glob)
[255]
$ cd ..
$ echo '% qinit; <stuff>; qinit -c'
% qinit; <stuff>; qinit -c
$ hg init e
$ cd e
$ hg qnew A
$ checkundo qnew
$ echo foo > foo
$ hg phase -r qbase
0: draft
$ hg add foo
$ hg qrefresh
$ hg phase -r qbase
0: draft
$ hg qnew B
$ echo >> foo
$ hg qrefresh
$ echo status >> .hg/patches/.hgignore
$ echo bleh >> .hg/patches/.hgignore
$ hg qinit -c
adding .hg/patches/A (glob)
adding .hg/patches/B (glob)
$ hg -R .hg/patches status
A .hgignore
A A
A B
A series
qinit -c shouldn't touch these files if they already exist
$ cat .hg/patches/.hgignore
status
bleh
$ cat .hg/patches/series
A
B
add an untracked file
$ echo >> .hg/patches/flaf
status --mq with color (issue2096)
$ hg status --mq --config extensions.color= --config color.mode=ansi --color=always
\x1b[0;32;1mA \x1b[0m\x1b[0;32;1m.hgignore\x1b[0m (esc)
\x1b[0;32;1mA \x1b[0m\x1b[0;32;1mA\x1b[0m (esc)
\x1b[0;32;1mA \x1b[0m\x1b[0;32;1mB\x1b[0m (esc)
\x1b[0;32;1mA \x1b[0m\x1b[0;32;1mseries\x1b[0m (esc)
\x1b[0;35;1;4m? \x1b[0m\x1b[0;35;1;4mflaf\x1b[0m (esc)
try the --mq option on a command provided by an extension
$ hg purge --mq --verbose --config extensions.purge=
removing file flaf
$ cd ..
#if no-outer-repo
init --mq without repo
$ mkdir f
$ cd f
$ hg init --mq
abort: there is no Mercurial repository here (.hg not found)
[255]
$ cd ..
#endif
init --mq with repo path
$ hg init g
$ hg init --mq g
$ test -d g/.hg/patches/.hg
init --mq with nonexistent directory
$ hg init --mq nonexistentdir
abort: repository nonexistentdir not found!
[255]
init --mq with bundle (non "local")
$ hg -R a bundle --all a.bundle >/dev/null
$ hg init --mq a.bundle
abort: only a local queue repository may be initialized
[255]
$ cd a
$ hg qnew -m 'foo bar' test.patch
$ echo '# comment' > .hg/patches/series.tmp
$ echo >> .hg/patches/series.tmp # empty line
$ cat .hg/patches/series >> .hg/patches/series.tmp
$ mv .hg/patches/series.tmp .hg/patches/series
qrefresh
$ echo a >> a
$ hg qrefresh
$ cat .hg/patches/test.patch
foo bar
diff -r [a-f0-9]* a (re)
--- a/a\t(?P<date>.*) (re)
\+\+\+ b/a\t(?P<date2>.*) (re)
@@ -1,1 +1,2 @@
a
+a
empty qrefresh
$ hg qrefresh -X a
revision:
$ hg diff -r -2 -r -1
patch:
$ cat .hg/patches/test.patch
foo bar
working dir diff:
$ hg diff --nodates -q
--- a/a
+++ b/a
@@ -1,1 +1,2 @@
a
+a
restore things
$ hg qrefresh
$ checkundo qrefresh
qpop
$ hg qpop
popping test.patch
patch queue now empty
$ checkundo qpop
qpush with dump of tag cache
Dump the tag cache to ensure that it has exactly one head after qpush.
$ rm -f .hg/cache/tags2-visible
$ hg tags > /dev/null
.hg/cache/tags2-visible (pre qpush):
$ cat .hg/cache/tags2-visible
1 [\da-f]{40} (re)
$ hg qpush
applying test.patch
now at: test.patch
$ hg phase -r qbase
2: draft
$ hg tags > /dev/null
.hg/cache/tags2-visible (post qpush):
$ cat .hg/cache/tags2-visible
2 [\da-f]{40} (re)
$ checkundo qpush
$ cd ..
pop/push outside repo
$ hg -R a qpop
popping test.patch
patch queue now empty
$ hg -R a qpush
applying test.patch
now at: test.patch
$ cd a
$ hg qnew test2.patch
qrefresh in subdir
$ cd b
$ echo a > a
$ hg add a
$ hg qrefresh
pop/push -a in subdir
$ hg qpop -a
popping test2.patch
popping test.patch
patch queue now empty
$ hg --traceback qpush -a
applying test.patch
applying test2.patch
now at: test2.patch
setting columns & formatted tests truncating (issue1912)
$ COLUMNS=4 hg qseries --config ui.formatted=true
test.patch
test2.patch
$ COLUMNS=20 hg qseries --config ui.formatted=true -vs
0 A test.patch: f...
1 A test2.patch:
$ hg qpop
popping test2.patch
now at: test.patch
$ hg qseries -vs
0 A test.patch: foo bar
1 U test2.patch:
$ hg sum | grep mq
mq: 1 applied, 1 unapplied
$ hg qpush
applying test2.patch
now at: test2.patch
$ hg sum | grep mq
mq: 2 applied
$ hg qapplied
test.patch
test2.patch
$ hg qtop
test2.patch
prev
$ hg qapp -1
test.patch
next
$ hg qunapp -1
all patches applied
[1]
$ hg qpop
popping test2.patch
now at: test.patch
commit should fail
$ hg commit
abort: cannot commit over an applied mq patch
[255]
push should fail if draft
$ hg push ../../k
pushing to ../../k
abort: source has mq patches applied
[255]
import should fail
$ hg st .
$ echo foo >> ../a
$ hg diff > ../../import.diff
$ hg revert --no-backup ../a
$ hg import ../../import.diff
abort: cannot import over an applied patch
[255]
$ hg st
import --no-commit should succeed
$ hg import --no-commit ../../import.diff
applying ../../import.diff
$ hg st
M a
$ hg revert --no-backup ../a
qunapplied
$ hg qunapplied
test2.patch
qpush/qpop with index
$ hg qnew test1b.patch
$ echo 1b > 1b
$ hg add 1b
$ hg qrefresh
$ hg qpush 2
applying test2.patch
now at: test2.patch
$ hg qpop 0
popping test2.patch
popping test1b.patch
now at: test.patch
$ hg qpush test.patch+1
applying test1b.patch
now at: test1b.patch
$ hg qpush test.patch+2
applying test2.patch
now at: test2.patch
$ hg qpop test2.patch-1
popping test2.patch
now at: test1b.patch
$ hg qpop test2.patch-2
popping test1b.patch
now at: test.patch
$ hg qpush test1b.patch+1
applying test1b.patch
applying test2.patch
now at: test2.patch
qpush --move
$ hg qpop -a
popping test2.patch
popping test1b.patch
popping test.patch
patch queue now empty
$ hg qguard test1b.patch -- -negguard
$ hg qguard test2.patch -- +posguard
$ hg qpush --move test2.patch # can't move guarded patch
cannot push 'test2.patch' - guarded by '+posguard'
[1]
$ hg qselect posguard
number of unguarded, unapplied patches has changed from 2 to 3
$ hg qpush --move test2.patch # move to front
applying test2.patch
now at: test2.patch
$ hg qpush --move test1b.patch # negative guard unselected
applying test1b.patch
now at: test1b.patch
$ hg qpush --move test.patch # noop move
applying test.patch
now at: test.patch
$ hg qseries -v
0 A test2.patch
1 A test1b.patch
2 A test.patch
$ hg qpop -a
popping test.patch
popping test1b.patch
popping test2.patch
patch queue now empty
cleaning up
$ hg qselect --none
guards deactivated
number of unguarded, unapplied patches has changed from 3 to 2
$ hg qguard --none test1b.patch
$ hg qguard --none test2.patch
$ hg qpush --move test.patch
applying test.patch
now at: test.patch
$ hg qpush --move test1b.patch
applying test1b.patch
now at: test1b.patch
$ hg qpush --move bogus # nonexistent patch
abort: patch bogus not in series
[255]
$ hg qpush --move # no patch
abort: please specify the patch to move
[255]
$ hg qpush --move test.patch # already applied
abort: cannot push to a previous patch: test.patch
[255]
$ sed '2i\
> # make qtip index different in series and fullseries
> ' `hg root`/.hg/patches/series > $TESTTMP/sedtmp
$ cp $TESTTMP/sedtmp `hg root`/.hg/patches/series
$ cat `hg root`/.hg/patches/series
# comment
# make qtip index different in series and fullseries
test.patch
test1b.patch
test2.patch
$ hg qpush --move test2.patch
applying test2.patch
now at: test2.patch
series after move
$ cat `hg root`/.hg/patches/series
# comment
# make qtip index different in series and fullseries
test.patch
test1b.patch
test2.patch
pop, qapplied, qunapplied
$ hg qseries -v
0 A test.patch
1 A test1b.patch
2 A test2.patch
qapplied -1 test.patch
$ hg qapplied -1 test.patch
only one patch applied
[1]
qapplied -1 test1b.patch
$ hg qapplied -1 test1b.patch
test.patch
qapplied -1 test2.patch
$ hg qapplied -1 test2.patch
test1b.patch
qapplied -1
$ hg qapplied -1
test1b.patch
qapplied
$ hg qapplied
test.patch
test1b.patch
test2.patch
qapplied test1b.patch
$ hg qapplied test1b.patch
test.patch
test1b.patch
qunapplied -1
$ hg qunapplied -1
all patches applied
[1]
qunapplied
$ hg qunapplied
popping
$ hg qpop
popping test2.patch
now at: test1b.patch
qunapplied -1
$ hg qunapplied -1
test2.patch
qunapplied
$ hg qunapplied
test2.patch
qunapplied test2.patch
$ hg qunapplied test2.patch
qunapplied -1 test2.patch
$ hg qunapplied -1 test2.patch
all patches applied
[1]
popping -a
$ hg qpop -a
popping test1b.patch
popping test.patch
patch queue now empty
qapplied
$ hg qapplied
qapplied -1
$ hg qapplied -1
no patches applied
[1]
$ hg qpush
applying test.patch
now at: test.patch
push should succeed
$ hg qpop -a
popping test.patch
patch queue now empty
$ hg push ../../k
pushing to ../../k
searching for changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
we want to start with some patches applied
$ hg qpush -a
applying test.patch
applying test1b.patch
applying test2.patch
now at: test2.patch
% pops all patches and succeeds
$ hg qpop -a
popping test2.patch
popping test1b.patch
popping test.patch
patch queue now empty
% does nothing and succeeds
$ hg qpop -a
no patches applied
% fails - nothing else to pop
$ hg qpop
no patches applied
[1]
% pushes a patch and succeeds
$ hg qpush
applying test.patch
now at: test.patch
% pops a patch and succeeds
$ hg qpop
popping test.patch
patch queue now empty
% pushes up to test1b.patch and succeeds
$ hg qpush test1b.patch
applying test.patch
applying test1b.patch
now at: test1b.patch
% does nothing and succeeds
$ hg qpush test1b.patch
qpush: test1b.patch is already at the top
% does nothing and succeeds
$ hg qpop test1b.patch
qpop: test1b.patch is already at the top
% fails - can't push to this patch
$ hg qpush test.patch
abort: cannot push to a previous patch: test.patch
[255]
% fails - can't pop to this patch
$ hg qpop test2.patch
abort: patch test2.patch is not applied
[255]
% pops up to test.patch and succeeds
$ hg qpop test.patch
popping test1b.patch
now at: test.patch
% pushes all patches and succeeds
$ hg qpush -a
applying test1b.patch
applying test2.patch
now at: test2.patch
% does nothing and succeeds
$ hg qpush -a
all patches are currently applied
% fails - nothing else to push
$ hg qpush
patch series already fully applied
[1]
% does nothing and succeeds
$ hg qpush test2.patch
qpush: test2.patch is already at the top
strip
$ cd ../../b
$ echo x>x
$ hg ci -Ama
adding x
$ hg strip tip
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
saved backup bundle to $TESTTMP/b/.hg/strip-backup/*-backup.hg (glob)
$ hg unbundle .hg/strip-backup/*
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
(run 'hg update' to get a working copy)
strip with local changes, should complain
$ hg up
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo y>y
$ hg add y
$ hg strip tip
abort: local changes found
[255]
--force strip with local changes
$ hg strip -f tip
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
saved backup bundle to $TESTTMP/b/.hg/strip-backup/770eb8fce608-0ddcae0f-backup.hg (glob)
$ cd ..
cd b; hg qrefresh
$ hg init refresh
$ cd refresh
$ echo a > a
$ hg ci -Ama
adding a
$ hg qnew -mfoo foo
$ echo a >> a
$ hg qrefresh
$ mkdir b
$ cd b
$ echo f > f
$ hg add f
$ hg qrefresh
$ cat ../.hg/patches/foo
foo
diff -r cb9a9f314b8b a
--- a/a\t(?P<date>.*) (re)
\+\+\+ b/a\t(?P<date>.*) (re)
@@ -1,1 +1,2 @@
a
+a
diff -r cb9a9f314b8b b/f
--- /dev/null\t(?P<date>.*) (re)
\+\+\+ b/b/f\t(?P<date>.*) (re)
@@ -0,0 +1,1 @@
+f
hg qrefresh .
$ hg qrefresh .
$ cat ../.hg/patches/foo
foo
diff -r cb9a9f314b8b b/f
--- /dev/null\t(?P<date>.*) (re)
\+\+\+ b/b/f\t(?P<date>.*) (re)
@@ -0,0 +1,1 @@
+f
$ hg status
M a
qpush failure
$ cd ..
$ hg qrefresh
$ hg qnew -mbar bar
$ echo foo > foo
$ echo bar > bar
$ hg add foo bar
$ hg qrefresh
$ hg qpop -a
popping bar
popping foo
patch queue now empty
$ echo bar > foo
$ hg qpush -a
applying foo
applying bar
file foo already exists
1 out of 1 hunks FAILED -- saving rejects to file foo.rej
patch failed, unable to continue (try -v)
patch failed, rejects left in working directory
errors during apply, please fix and qrefresh bar
[2]
$ hg st
? foo
? foo.rej
mq tags
$ hg log --template '{rev} {tags}\n' -r qparent:qtip
0 qparent
1 foo qbase
2 bar qtip tip
mq revset
$ hg log -r 'mq()' --template '{rev}\n'
1
2
$ hg help revsets | grep -i mq
"mq()"
Changesets managed by MQ.
bad node in status
$ hg qpop
popping bar
now at: foo
$ hg strip -qn tip
$ hg tip
changeset: 0:cb9a9f314b8b
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: a
$ hg branches
default 0:cb9a9f314b8b
$ hg qpop
no patches applied
[1]
$ cd ..
git patches
$ cat >>$HGRCPATH <<EOF
> [diff]
> git = True
> EOF
$ hg init git
$ cd git
$ hg qinit
$ hg qnew -m'new file' new
$ echo foo > new
#if execbit
$ chmod +x new
#endif
$ hg add new
$ hg qrefresh
#if execbit
$ cat .hg/patches/new
new file
diff --git a/new b/new
new file mode 100755
--- /dev/null
+++ b/new
@@ -0,0 +1,1 @@
+foo
#else
$ cat .hg/patches/new
new file
diff --git a/new b/new
new file mode 100644
--- /dev/null
+++ b/new
@@ -0,0 +1,1 @@
+foo
#endif
$ hg qnew -m'copy file' copy
$ hg cp new copy
$ hg qrefresh
$ cat .hg/patches/copy
copy file
diff --git a/new b/copy
copy from new
copy to copy
$ hg qpop
popping copy
now at: new
$ hg qpush
applying copy
now at: copy
$ hg qdiff
diff --git a/new b/copy
copy from new
copy to copy
$ cat >>$HGRCPATH <<EOF
> [diff]
> git = False
> EOF
$ hg qdiff --git
diff --git a/new b/copy
copy from new
copy to copy
$ cd ..
empty lines in status
$ hg init emptystatus
$ cd emptystatus
$ hg qinit
$ printf '\n\n' > .hg/patches/status
$ hg qser
$ cd ..
bad line in status (without ":")
$ hg init badstatus
$ cd badstatus
$ hg qinit
$ printf 'babar has no colon in this line\n' > .hg/patches/status
$ hg qser
malformated mq status line: ['babar has no colon in this line']
$ cd ..
test file addition in slow path
$ hg init slow
$ cd slow
$ hg qinit
$ echo foo > foo
$ hg add foo
$ hg ci -m 'add foo'
$ hg qnew bar
$ echo bar > bar
$ hg add bar
$ hg mv foo baz
$ hg qrefresh --git
$ hg up -C 0
1 files updated, 0 files merged, 2 files removed, 0 files unresolved
$ echo >> foo
$ hg ci -m 'change foo'
created new head
$ hg up -C 1
2 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ hg qrefresh --git
$ cat .hg/patches/bar
diff --git a/bar b/bar
new file mode 100644
--- /dev/null
+++ b/bar
@@ -0,0 +1,1 @@
+bar
diff --git a/foo b/baz
rename from foo
rename to baz
$ hg log -v --template '{rev} {file_copies}\n' -r .
2 baz (foo)
$ hg qrefresh --git
$ cat .hg/patches/bar
diff --git a/bar b/bar
new file mode 100644
--- /dev/null
+++ b/bar
@@ -0,0 +1,1 @@
+bar
diff --git a/foo b/baz
rename from foo
rename to baz
$ hg log -v --template '{rev} {file_copies}\n' -r .
2 baz (foo)
$ hg qrefresh
$ grep 'diff --git' .hg/patches/bar
diff --git a/bar b/bar
diff --git a/foo b/baz
test file move chains in the slow path
$ hg up -C 1
1 files updated, 0 files merged, 2 files removed, 0 files unresolved
$ echo >> foo
$ hg ci -m 'change foo again'
$ hg up -C 2
2 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ hg mv bar quux
$ hg mv baz bleh
$ hg qrefresh --git
$ cat .hg/patches/bar
diff --git a/foo b/bleh
rename from foo
rename to bleh
diff --git a/quux b/quux
new file mode 100644
--- /dev/null
+++ b/quux
@@ -0,0 +1,1 @@
+bar
$ hg log -v --template '{rev} {file_copies}\n' -r .
3 bleh (foo)
$ hg mv quux fred
$ hg mv bleh barney
$ hg qrefresh --git
$ cat .hg/patches/bar
diff --git a/foo b/barney
rename from foo
rename to barney
diff --git a/fred b/fred
new file mode 100644
--- /dev/null
+++ b/fred
@@ -0,0 +1,1 @@
+bar
$ hg log -v --template '{rev} {file_copies}\n' -r .
3 barney (foo)
refresh omitting an added file
$ hg qnew baz
$ echo newfile > newfile
$ hg add newfile
$ hg qrefresh
$ hg st -A newfile
C newfile
$ hg qrefresh -X newfile
$ hg st -A newfile
A newfile
$ hg revert newfile
$ rm newfile
$ hg qpop
popping baz
now at: bar
test qdel/qrm
$ hg qdel baz
$ echo p >> .hg/patches/series
$ hg qrm p
$ hg qser
bar
create a git patch
$ echo a > alexander
$ hg add alexander
$ hg qnew -f --git addalexander
$ grep diff .hg/patches/addalexander
diff --git a/alexander b/alexander
create a git binary patch
$ cat > writebin.py <<EOF
> import sys
> path = sys.argv[1]
> open(path, 'wb').write('BIN\x00ARY')
> EOF
$ python writebin.py bucephalus
$ python "$TESTDIR/md5sum.py" bucephalus
8ba2a2f3e77b55d03051ff9c24ad65e7 bucephalus
$ hg add bucephalus
$ hg qnew -f --git addbucephalus
$ grep diff .hg/patches/addbucephalus
diff --git a/bucephalus b/bucephalus
check binary patches can be popped and pushed
$ hg qpop
popping addbucephalus
now at: addalexander
$ test -f bucephalus && echo % bucephalus should not be there
[1]
$ hg qpush
applying addbucephalus
now at: addbucephalus
$ test -f bucephalus
$ python "$TESTDIR/md5sum.py" bucephalus
8ba2a2f3e77b55d03051ff9c24ad65e7 bucephalus
strip again
$ cd ..
$ hg init strip
$ cd strip
$ touch foo
$ hg add foo
$ hg ci -m 'add foo'
$ echo >> foo
$ hg ci -m 'change foo 1'
$ hg up -C 0
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo 1 >> foo
$ hg ci -m 'change foo 2'
created new head
$ HGMERGE=true hg merge
merging foo
0 files updated, 1 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg ci -m merge
$ hg log
changeset: 3:99615015637b
tag: tip
parent: 2:20cbbe65cff7
parent: 1:d2871fc282d4
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: merge
changeset: 2:20cbbe65cff7
parent: 0:53245c60e682
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: change foo 2
changeset: 1:d2871fc282d4
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: change foo 1
changeset: 0:53245c60e682
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: add foo
$ hg strip 1
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
saved backup bundle to $TESTTMP/strip/.hg/strip-backup/*-backup.hg (glob)
$ checkundo strip
$ hg log
changeset: 1:20cbbe65cff7
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: change foo 2
changeset: 0:53245c60e682
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: add foo
$ cd ..
qclone
$ qlog()
> {
> echo 'main repo:'
> hg log --template ' rev {rev}: {desc}\n'
> echo 'patch repo:'
> hg -R .hg/patches log --template ' rev {rev}: {desc}\n'
> }
$ hg init qclonesource
$ cd qclonesource
$ echo foo > foo
$ hg add foo
$ hg ci -m 'add foo'
$ hg qinit
$ hg qnew patch1
$ echo bar >> foo
$ hg qrefresh -m 'change foo'
$ cd ..
repo with unversioned patch dir
$ hg qclone qclonesource failure
abort: versioned patch repository not found (see init --mq)
[255]
$ cd qclonesource
$ hg qinit -c
adding .hg/patches/patch1 (glob)
$ hg qci -m checkpoint
$ qlog
main repo:
rev 1: change foo
rev 0: add foo
patch repo:
rev 0: checkpoint
$ cd ..
repo with patches applied
$ hg qclone qclonesource qclonedest
updating to branch default
3 files updated, 0 files merged, 0 files removed, 0 files unresolved
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd qclonedest
$ qlog
main repo:
rev 0: add foo
patch repo:
rev 0: checkpoint
$ cd ..
repo with patches unapplied
$ cd qclonesource
$ hg qpop -a
popping patch1
patch queue now empty
$ qlog
main repo:
rev 0: add foo
patch repo:
rev 0: checkpoint
$ cd ..
$ hg qclone qclonesource qclonedest2
updating to branch default
3 files updated, 0 files merged, 0 files removed, 0 files unresolved
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd qclonedest2
$ qlog
main repo:
rev 0: add foo
patch repo:
rev 0: checkpoint
$ cd ..
Issue1033: test applying on an empty file
$ hg init empty
$ cd empty
$ touch a
$ hg ci -Am addempty
adding a
$ echo a > a
$ hg qnew -f -e changea
$ hg qpop
popping changea
patch queue now empty
$ hg qpush
applying changea
now at: changea
$ cd ..
test qpush with --force, issue1087
$ hg init forcepush
$ cd forcepush
$ echo hello > hello.txt
$ echo bye > bye.txt
$ hg ci -Ama
adding bye.txt
adding hello.txt
$ hg qnew -d '0 0' empty
$ hg qpop
popping empty
patch queue now empty
$ echo world >> hello.txt
qpush should fail, local changes
$ hg qpush
abort: local changes found
[255]
apply force, should not discard changes with empty patch
$ hg qpush -f
applying empty
patch empty is empty
now at: empty
$ hg diff --config diff.nodates=True
diff -r d58265112590 hello.txt
--- a/hello.txt
+++ b/hello.txt
@@ -1,1 +1,2 @@
hello
+world
$ hg qdiff --config diff.nodates=True
diff -r 9ecee4f634e3 hello.txt
--- a/hello.txt
+++ b/hello.txt
@@ -1,1 +1,2 @@
hello
+world
$ hg log -l1 -p
changeset: 1:d58265112590
tag: empty
tag: qbase
tag: qtip
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: imported patch empty
$ hg qref -d '0 0'
$ hg qpop
popping empty
patch queue now empty
$ echo universe >> hello.txt
$ echo universe >> bye.txt
qpush should fail, local changes
$ hg qpush
abort: local changes found
[255]
apply force, should discard changes in hello, but not bye
$ hg qpush -f --verbose --config 'ui.origbackuppath=.hg/origbackups'
applying empty
creating directory: $TESTTMP/forcepush/.hg/origbackups (glob)
saving current version of hello.txt as $TESTTMP/forcepush/.hg/origbackups/hello.txt.orig (glob)
patching file hello.txt
committing files:
hello.txt
committing manifest
committing changelog
now at: empty
$ hg st
M bye.txt
$ hg diff --config diff.nodates=True
diff -r ba252371dbc1 bye.txt
--- a/bye.txt
+++ b/bye.txt
@@ -1,1 +1,2 @@
bye
+universe
$ hg qdiff --config diff.nodates=True
diff -r 9ecee4f634e3 bye.txt
--- a/bye.txt
+++ b/bye.txt
@@ -1,1 +1,2 @@
bye
+universe
diff -r 9ecee4f634e3 hello.txt
--- a/hello.txt
+++ b/hello.txt
@@ -1,1 +1,3 @@
hello
+world
+universe
test that the previous call to qpush with -f (--force) and --config actually put
the orig files out of the working copy
$ ls .hg/origbackups
hello.txt.orig
test popping revisions not in working dir ancestry
$ hg qseries -v
0 A empty
$ hg up qparent
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg qpop
popping empty
patch queue now empty
$ cd ..
$ hg init deletion-order
$ cd deletion-order
$ touch a
$ hg ci -Aqm0
$ hg qnew rename-dir
$ hg rm a
$ hg qrefresh
$ mkdir a b
$ touch a/a b/b
$ hg add -q a b
$ hg qrefresh
test popping must remove files added in subdirectories first
$ hg qpop
popping rename-dir
patch queue now empty
$ cd ..
test case preservation through patch pushing especially on case
insensitive filesystem
$ hg init casepreserve
$ cd casepreserve
$ hg qnew add-file1
$ echo a > TeXtFiLe.TxT
$ hg add TeXtFiLe.TxT
$ hg qrefresh
$ hg qnew add-file2
$ echo b > AnOtHeRFiLe.TxT
$ hg add AnOtHeRFiLe.TxT
$ hg qrefresh
$ hg qnew modify-file
$ echo c >> AnOtHeRFiLe.TxT
$ hg qrefresh
$ hg qapplied
add-file1
add-file2
modify-file
$ hg qpop -a
popping modify-file
popping add-file2
popping add-file1
patch queue now empty
this qpush causes problems below, if case preservation on case
insensitive filesystem is not enough:
(1) unexpected "adding ..." messages are shown
(2) patching fails in modification of (1) files
$ hg qpush -a
applying add-file1
applying add-file2
applying modify-file
now at: modify-file
Proper phase default with mq:
1. mq.secret=false
$ rm .hg/store/phaseroots
$ hg phase 'qparent::'
-1: public
0: draft
1: draft
2: draft
$ echo '[mq]' >> $HGRCPATH
$ echo 'secret=true' >> $HGRCPATH
$ rm -f .hg/store/phaseroots
$ hg phase 'qparent::'
-1: public
0: secret
1: secret
2: secret
Test that qfinish change phase when mq.secret=true
$ hg qfinish qbase
patch add-file1 finalized without changeset message
$ hg phase 'all()'
0: draft
1: secret
2: secret
Test that qfinish respect phases.new-commit setting
$ echo '[phases]' >> $HGRCPATH
$ echo 'new-commit=secret' >> $HGRCPATH
$ hg qfinish qbase
patch add-file2 finalized without changeset message
$ hg phase 'all()'
0: draft
1: secret
2: secret
(restore env for next test)
$ sed -e 's/new-commit=secret//' $HGRCPATH > $TESTTMP/sedtmp
$ cp $TESTTMP/sedtmp $HGRCPATH
$ hg qimport -r 1 --name add-file2
Test that qfinish preserve phase when mq.secret=false
$ sed -e 's/secret=true/secret=false/' $HGRCPATH > $TESTTMP/sedtmp
$ cp $TESTTMP/sedtmp $HGRCPATH
$ hg qfinish qbase
patch add-file2 finalized without changeset message
$ hg phase 'all()'
0: draft
1: secret
2: secret
Test that secret mq patch does not break hgweb
$ cat > hgweb.cgi <<HGWEB
> from mercurial import demandimport; demandimport.enable()
> from mercurial.hgweb import hgweb
> from mercurial.hgweb import wsgicgi
> import cgitb
> cgitb.enable()
> app = hgweb('.', 'test')
> wsgicgi.launch(app)
> HGWEB
$ . "$TESTDIR/cgienv"
#if msys
$ PATH_INFO=//tags; export PATH_INFO
#else
$ PATH_INFO=/tags; export PATH_INFO
#endif
$ QUERY_STRING='style=raw'
$ python hgweb.cgi | grep '^tip'
tip [0-9a-f]{40} (re)
$ cd ..
Test interaction with revset (issue4426)
$ hg init issue4426
$ cd issue4426
$ echo a > a
$ hg ci -Am a
adding a
$ echo a >> a
$ hg ci -m a
$ echo a >> a
$ hg ci -m a
$ hg qimport -r 0::
reimport things
$ hg qimport -r 1::
abort: revision 2 is already managed
[255]
$ cd ..
|