git_config_add_backend

Add a generic config file instance to an existing config

Note that the configuration object will free the file automatically.

Further queries on this config object will access each of the config file instances in order (instances with a higher priority level will be accessed first).

@param cfg the configuration to add the file to @param file the configuration file (backend) to add @param level the priority level of the backend @param repo optional repository to allow parsing of conditional includes @param force if a config file already exists for the given priority level, replace it @return 0 on success, git_error_code.GIT_EEXISTS when adding more than one file for a given priority level (and force_replace set to 0), or error code

Meta