724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
|
blob_reset(&out);
}
/*
** COMMAND: configuration
**
** Usage: %fossil configuration METHOD ... ?-R|--repository REPOSITORY?
**
** Where METHOD is one of: export import merge pull push reset. All methods
** accept the -R or --repository option to specific a repository.
**
** %fossil configuration export AREA FILENAME
**
** Write to FILENAME exported configuraton information for AREA.
|
|
|
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
|
blob_reset(&out);
}
/*
** COMMAND: configuration
**
** Usage: %fossil configuration METHOD ... ?OPTIONS?
**
** Where METHOD is one of: export import merge pull push reset. All methods
** accept the -R or --repository option to specific a repository.
**
** %fossil configuration export AREA FILENAME
**
** Write to FILENAME exported configuraton information for AREA.
|
770
771
772
773
774
775
776
777
778
779
780
781
782
783
|
**
** Restore the configuration to the default. AREA as above.
**
** %fossil configuration sync AREA ?URL?
**
** Synchronize configuration changes in the local repository with
** the remote repository at URL.
*/
void configuration_cmd(void){
int n;
const char *zMethod;
if( g.argc<3 ){
usage("export|import|merge|pull|reset ...");
}
|
>
>
>
>
>
|
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
|
**
** Restore the configuration to the default. AREA as above.
**
** %fossil configuration sync AREA ?URL?
**
** Synchronize configuration changes in the local repository with
** the remote repository at URL.
**
** Options:
** -R|--repository FILE Extract info from repository FILE
**
** See also: set
*/
void configuration_cmd(void){
int n;
const char *zMethod;
if( g.argc<3 ){
usage("export|import|merge|pull|reset ...");
}
|