1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
|
}
db_commit_transaction();
/* Optionally do a "git push" */
zPushUrl = db_text(0, "SELECT value FROM mconfig WHERE key='autopush'");
if( zPushUrl ){
char *zPushCmd = mprintf("git push --mirror %s", zPushUrl);
fossil_print("%s", zPushCmd);
fossil_system(zPushCmd);
fossil_free(zPushCmd);
}
}
/*
** COMMAND: git
|
|
|
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
|
}
db_commit_transaction();
/* Optionally do a "git push" */
zPushUrl = db_text(0, "SELECT value FROM mconfig WHERE key='autopush'");
if( zPushUrl ){
char *zPushCmd = mprintf("git push --mirror %s", zPushUrl);
fossil_print("%s\n", zPushCmd);
fossil_system(zPushCmd);
fossil_free(zPushCmd);
}
}
/*
** COMMAND: git
|