LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

fossil-init

create new Fossil repository

TLDR

Create new repository
$ fossil init [repo.fossil]
copy
Create with admin password
$ fossil init --admin-user [admin] [repo.fossil]
copy
Create with project name
$ fossil init --project-name "[name]" [repo.fossil]
copy

SYNOPSIS

fossil init [options] repository

DESCRIPTION

fossil init creates a new Fossil repository file. The repository is a single SQLite database that contains all history, wiki, tickets, and project metadata.After initialization, use fossil open to create a working directory. The repository file can be hosted via fossil ui for web access or served over HTTP for remote collaboration.Repository settings include project name, description, and admin credentials. The --template option allows creating repositories based on existing ones, inheriting their configuration.

PARAMETERS

--admin-user name

Set admin username.
--project-name name
Set project name.
--project-desc text
Set project description.
--template repo
Use template repository.
--date-override datetime
Override initial check-in date.

SEE ALSO

fossil(1)

Copied to clipboard
Kai