LinuxCommandLibrary

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.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community