Fossil

Diff
Login

Differences From Artifact [76f8535327]:

To Artifact [6da128f727]:


541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
541
542
543
544
545
546
547

548
549
550
551
552
553
554







-







    if( rid!=0 ){
      do{
        db_bind_int(&qc, ":rid", rid);
        db_step(&qc);
        db_reset(&qc);
      }while((rid = bag_next(&vers, rid))!=0);
    }
    fossil_free(zMainBranch);
    db_finalize(&qb);
    db_finalize(&qc);
    fclose(f);
  }

  /* Step 1:  Generate "blob" records for every artifact that is part
  ** of a check-in
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
696
697
698
699
700
701
702

703
704
705
706
707
708
709







-







        free(zMark);
      }
    }
    db_finalize(&q4);
    db_finalize(&q3);
    printf("\n");
  }
  fossil_free(zMainBranch);
  db_finalize(&q2);
  db_finalize(&q);
  manifest_cache_clear();


  /* Output tags */
  db_prepare(&q,
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1304
1305
1306
1307
1308
1309
1310

1311
1312
1313
1314
1315
1316
1317







-







    blob_reset(&tagslist);
  }else if( fPManifest & MFESTFLG_TAGS ){
    fprintf(xCmd, "D manifest.tags\n");
  }

  /* The check-in is finished, so decrement the counter */
  (*pnLimit)--;
  fossil_free(zMainBranch);
  return 0;
}

/*
** Create a new Git repository at zMirror to use as the mirror.
** Try to make zMainBr be the main branch for the new repository.
**