725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
|
** in the future.
**
** The --incremental option allows an existing repository to be extended
** with new content. Otherwise, if a file with the same name as NEW-REPOSITORY
** is found, the command fails unless the --force option is used.
**
** Options:
** --incremental allow importing into an existing repository
** --force remove existing file
**
** See also: export
*/
void git_import_cmd(void){
char *zPassword;
FILE *pIn;
Stmt q;
|
>
|
<
|
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
|
** in the future.
**
** The --incremental option allows an existing repository to be extended
** with new content. Otherwise, if a file with the same name as NEW-REPOSITORY
** is found, the command fails unless the --force option is used.
**
** Options:
** -f|--force remove existing file
** -i|--incremental allow importing into an existing repository
**
** See also: export
*/
void git_import_cmd(void){
char *zPassword;
FILE *pIn;
Stmt q;
|