Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | find_filename_changes() should report a rename even if the file ends up reverting back to its original name. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | merge-renames |
Files: | files | file ages | folders |
SHA1: |
0e9d50b1481dc80bbff8ba4a529e52b9 |
User & Date: | joel 2016-05-06 20:00:06.481 |
Context
2016-05-06
| ||
20:27 | Handle merges with a specified baseline that comes after a commit with renames. ... (check-in: 8da901bb user: joel tags: merge-renames) | |
20:00 | find_filename_changes() should report a rename even if the file ends up reverting back to its original name. ... (check-in: 0e9d50b1 user: joel tags: merge-renames) | |
19:49 | Improve the merge command's ability to handle various scenarios involving renames. ... (check-in: 423029b1 user: joel tags: merge-renames) | |
Changes
Changes to src/path.c.
︙ | ︙ | |||
450 451 452 453 454 455 456 | } db_finalize(&q1); if( nChng ){ aChng = *aiChng = fossil_malloc( nChng*2*sizeof(int) ); for(pChng=pAll, i=0; pChng; pChng=pChng->pNext){ if( pChng->newName==0 ) continue; if( pChng->origName==0 ) continue; | < | 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | } db_finalize(&q1); if( nChng ){ aChng = *aiChng = fossil_malloc( nChng*2*sizeof(int) ); for(pChng=pAll, i=0; pChng; pChng=pChng->pNext){ if( pChng->newName==0 ) continue; if( pChng->origName==0 ) continue; aChng[i] = pChng->origName; aChng[i+1] = pChng->newName; if( zDebug ){ fossil_print("%s summary %d[%z] -> %d[%z]\n", zDebug, aChng[i], db_text(0, "SELECT name FROM filename WHERE fnid=%d", aChng[i]), |
︙ | ︙ |
Changes to test/merge_renames.test.
︙ | ︙ | |||
328 329 330 331 332 333 334 335 336 337 338 339 340 341 | } fossil merge -n b test_status_list merge_renames-9-6 $RESULT " $expectedMerge REMINDER: this was a dry run - no files were actually changed. " test merge_renames-9-7 {[fossil changes] eq ""} ###################################### # # Tests for troubles not specifically linked with renames but that I'd like to # write: # [c26c63eb1b] - 'merge --backout' does not handle conflicts properly # [953031915f] - Lack of warning when overwriting extra files | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | } fossil merge -n b test_status_list merge_renames-9-6 $RESULT " $expectedMerge REMINDER: this was a dry run - no files were actually changed. " test merge_renames-9-7 {[fossil changes] eq ""} ################################################################### # Test 10 # # Merge swapped filenames, backout the swap, then merge changes # ################################################################### test_setup write_file f1 "f1" write_file f2 "f2" fossil add f1 f2 fossil commit -m "add files" ;# N fossil mv --hard f1 f1-tmp fossil mv --hard f2 f1 fossil mv --hard f1-tmp f2 fossil commit -b b -m "swap f1, f2" ;# P fossil update trunk fossil merge b test_status_list merge_renames-10-1 $RESULT { RENAME f1 -> f2 RENAME f2 -> f1 } test_file_contents merge_renames-10-2 f1 "f2" test_file_contents merge_renames-10-3 f2 "f1" fossil commit -m "merge b" fossil update b write_file f1 f1.1 write_file f2 f2.1 fossil commit -m "edit" ;# M fossil update trunk fossil merge --backout trunk test_status_list merge_renames-10-4 $RESULT { RENAME f1 -> f2 RENAME f2 -> f1 } test_file_contents merge_renames-10-5 f1 "f1" test_file_contents merge_renames-10-6 f2 "f2" test_status_list merge_renames-10-7 [fossil changes] " RENAMED f1 RENAMED f2 BACKOUT [commit_id trunk] " fossil commit -m "swap back" ;# V fossil merge b test_status_list merge_renames-10-8 $RESULT { UPDATE f1 UPDATE f2 } test_file_contents merge_renames-10-9 f1 "f2.1" test_file_contents merge_renames-10-10 f2 "f1.1" ###################################### # # Tests for troubles not specifically linked with renames but that I'd like to # write: # [c26c63eb1b] - 'merge --backout' does not handle conflicts properly # [953031915f] - Lack of warning when overwriting extra files |
︙ | ︙ |