Tool for managing Git repositories in a Fossil monorepo
Project description
Fitrepo - Fossil Import Tool
This tool manages the import and incremental update of multiple Git repositories into a single Fossil repository, effectively creating a monorepo. Each Git repository is organized into its own subdirectory within the Fossil repository, and its branches are prefixed with the subdirectory name (e.g., subrepo/master).
Usage
Installation
pip install fitrepo
How to Use
Run the script from the directory where you want the Fossil repository (fitrepo.fossil) and configuration file (fitrepo.json) to reside.
Commands
-
Initialize the Fossil Repository
uv tool run fitrepo init
- Creates
fitrepo.fossilif it doesn't exist. - Creates an empty
fitrepo.jsonconfiguration file if it doesn't exist. - Supports:
-v/--verbose,-f/--fossil-repo,-c/--config,-g/--git-clones-dir,-m/--marks-dir,--fwd-fossil-open,--fwd-fossil-init,--fwdfossil
- Creates
-
Import a Git Repository
uv tool run fitrepo import <git-repo-url> <subdir-name>
- Example:
uv tool run fitrepo import https://github.com/user/subrepo.git subrepo - Clones the Git repository, moves its files into the
subreposubdirectory, prefixes its branches (e.g.,subrepo/master), and imports it into the Fossil repository. - Stores configuration details in
fitrepo.json. - Supports the same options as the
initcommand.
- Example:
-
Update an Existing Git Repository
uv tool run fitrepo update <subdir-name>
- Example:
uv tool run fitrepo update subrepo - Pulls the latest changes from the Git repository associated with
subrepo, reapplies the filters, and incrementally updates the Fossil repository. - Supports the same options as the
initcommand.
- Example:
-
List Imported Repositories
uv tool run fitrepo list
- Lists all the Git repositories that have been imported into the Fossil repository.
- Shows the subdirectory name and Git repository URL for each imported repository.
- In verbose mode, shows additional details like clone path and marks files.
Command-line Options
The tool supports several global options that can be used with any command:
-v/--verbose: Enable verbose output.-f/--fossil-repo FILE: Specify a custom Fossil repository file (default:fitrepo.fossil).-c/--config FILE: Specify a custom configuration file (default:fitrepo.json).-g/--git-clones-dir DIR: Specify a custom Git clones directory (default:.fitrepo/git_clones).-m/--marks-dir DIR: Specify a custom marks directory (default:.fitrepo/marks).--fwd-fossil-open ARGS: Forward arguments to thefossil opencommand.--fwd-fossil-init ARGS: Forward arguments to thefossil initcommand.--fwdfossil ARGS: Forward arguments to all fossil commands (deprecated).--version: Show the version of the tool and exit.--help: Show help message and exit.
Configuration File (fitrepo.json)
The tool maintains a fitrepo.json file to track imported repositories. Example content after importing a repository:
{
"name": "project_name",
"repositories": {
"subrepo": {
"git_repo_url": "https://github.com/user/repo.git",
"git_clone_path": ".fitrepo/git_clones/subrepo",
"git_marks_file": ".fitrepo/marks/subrepo_git.marks",
"fossil_marks_file": ".fitrepo/marks/subrepo_fossil.marks"
}
}
}
Features
- Subdirectory Organization: Each Git repository's files are placed in a unique subdirectory within the Fossil repository.
- Branch Prefixing: Branches are renamed with the subdirectory name as a prefix (e.g.,
masterbecomessubrepo/master). - Incremental Updates: Uses marks files to ensure only new changes are imported during updates.
- Error Handling: Provides informative error messages for common issues (e.g., duplicate subdirectory names, command failures).
- User Feedback: Logs progress and errors to the console.
- Flexible Configuration: Allows customization of file paths and Fossil arguments.
Requirements
- Python 3.9+
- Git
- git-filter-repo (automatically installed as a dependency)
- Fossil (installed and accessible from the command line)
Notes
- Run the tool in the directory where you want
fitrepo.fossilto reside. - The tool creates
.fitrepo/git_clones/for Git repositories and.fitrepo/marks/for marks files. - Only branches are prefixed; tags retain their original names.
- Use
-v/--verbosefor detailed output during operations. - When specifying arguments with
--fwdfossilthat begin with a dash, use the equals sign format to avoid shell interpretation issues (e.g.,--fwdfossil="-f").
Advanced Usage
Forwarding Arguments to Fossil Commands
You can pass specific arguments to fossil commands:
# Forward '-f' argument to 'fossil open' command
uv tool run fitrepo init --fwd-fossil-open="-f"
# Forward arguments to 'fossil init' command
uv tool run fitrepo init --fwd-fossil-init="--template /path/to/template"
Using Nested Subdirectories
You can import repositories into nested subdirectories:
uv tool run fitrepo import https://github.com/user/repo.git libs/common
This will clone the repository to libs/common/repo subdirectory and prefix branches with libs/common/repo/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fitrepo-0.1.44.tar.gz.
File metadata
- Download URL: fitrepo-0.1.44.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.29
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bb3495f8708757debb59664cd48d924d8aad7269c929a6b12bf8fc1481fe9ff
|
|
| MD5 |
40cf377be3a5905af3c2d8e423bd105a
|
|
| BLAKE2b-256 |
0b3e03e95e1a6686e644b063bff3dd7301a50889dd3fd85ec8f93606ec7bc8cd
|
File details
Details for the file fitrepo-0.1.44-py3-none-any.whl.
File metadata
- Download URL: fitrepo-0.1.44-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.29
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1901a8c9f571bcf6695ac001c6b4b0f5a86c41b3d0ad7d581f50fee0bafb2fd0
|
|
| MD5 |
198288b216a03355240b6aff26342aef
|
|
| BLAKE2b-256 |
5f2cbf6aef89ecf912d42232971509b203f0ebf81231cfdaed3ef42dff771719
|