No description
Find a file
2023-03-27 15:38:45 +01:00
docs Initial commit 2022-10-27 19:28:02 +01:00
src Allow running shell tasks in the background 2023-03-27 15:38:34 +01:00
unittest Initial commit 2022-10-27 19:28:02 +01:00
.envrc Initial commit 2022-10-27 19:28:02 +01:00
.flake8 Initial commit 2022-10-27 19:28:02 +01:00
.gitignore Initial commit 2022-10-27 19:28:02 +01:00
git-snaps Initial commit 2022-10-27 19:28:02 +01:00
Makefile Initial commit 2022-10-27 19:28:02 +01:00
mkdocs.yml Initial commit 2022-10-27 19:28:02 +01:00
mypy.ini Initial commit 2022-10-27 19:28:02 +01:00
poetry.lock Update dependencies 2023-03-27 15:38:45 +01:00
pyproject.toml Add support for Python 3.11 2022-11-06 12:14:37 +00:00
README.md Initial commit 2022-10-27 19:28:02 +01:00
tox.ini Initial commit 2022-10-27 19:28:02 +01:00

Git Meta

A system for managinng information, typically short textual descriptions, about anything stored in a Git repostiory: Manage branch desctriptions (or other Git refs), directories and files (Git trees), and commits (similar to git-notes) without affecting these objects directly.

Features

Essentially Git Meta stores shadow trees in your repository (similar to gh-pages on GitHub). These special directories contain text files describing branches, other files, or commit. They are not part of your working tree so that you can use this system to describe any repositoires without changing or adding any files. Still all descriptions can be stored and versioned via Git, just like the rest of your repository.

All meta information is sharable via remote repositories, that is it can be pushed to / fetched from GitHub, GitLab, Bitbucket, etc. without requiring any special support from the remote repository. Just as usual, you can share on-demand by providing refspecs to git-fetch or git-push or configure your repository to share meta-information automatically by storing this refspecs in the configuration.

Similarly, meta-information is accessible to any Git client without requiring installation of Git Meta.

Usage

Note: This secton describes intended funcationality, not yet implmented.

Synopsis

git meta COMMAND OBJECT

Valid objects are:

  • Any branch (or tag) name.
  • Any commit hash.
  • Any file name.

Valid commands are:

  • add
  • edit
  • remove
  • show
  • fetch and push

Examples

git meta add master

git meta add README.md