A Git Project Manager
Project description
Metagit
Git for Git Repositories
If you:
- have a directory full of Git repos
- want to version-control the configuration of those repos
- like Git
Then you might find Metagit useful. It offers a Git-like experience for managing Git repos.
Demo
Initialize a Metagit repository:
$ cd ~/projects/ # or wherever you store your Git projects, or use metagit -C
$ metagit init # creates .metagit, a Git repo where tracked project configs are kept
Initialized Metagit repository in /home/dmtucker/projects
$ metagit status
Untracked projects
(use "metagit add <project>..." to begin tracking)
project1/
project2/
Track changes to project config:
$ metagit add project1/ project2/ # start tracking some projects
$ git -C project1/ remote add foo git@somehost.com:foo/project1.git
$ rm -rf project2/
$ metagit status
Changes
(use "metagit add/rm <project>..." to accept changes)
(use "metagit restore <project>..." to undo changes)
modified: project1
deleted: project2
Git tracks lines in files. Metagit tracks config in projects.
$ metagit diff
diff --git a/project1 b/project1
index 515f483..93a874c 100644
--- a/project1
+++ b/project1
@@ -3,3 +3,6 @@
filemode = true
bare = false
logallrefupdates = true
+[remote "foo"]
+ url = git@somehost.com:foo/project1.git
+ fetch = +refs/heads/*:refs/remotes/foo/*
diff --git a/project2 b/project2
deleted file mode 100644
index 515f483..0000000
--- a/project2
+++ /dev/null
@@ -1,5 +0,0 @@
-[core]
- repositoryformatversion = 0
- filemode = true
- bare = false
- logallrefupdates = true
This example deleted project2 so as to demonstrate metagit restore (below), but keep in mind, ONLY CONFIGURATION IS TRACKED.
If you need all of project2 back, you should restore from a backup.
$ metagit restore project2 # only restores git config! not branches/tags/etc.
$ metagit add project1 # add the project again to keep the changes
$ metagit rm project1 # stop tracking a project (does not affect the actual project)
About .metagit
.metagit is just another Git repo in your projects folder. It is created by metagit init, which automatically starts tracking it.
When metagit add is used to start tracking a project, that project's .git/config file is copied into .metagit and committed.
$ git -C .metagit log
36cec91 (HEAD -> master) Remove project1
a1ed312 Add project1
185ed15 Add project2
e4d274d Add project1
1e16b5e Add .metagit
Pro tip: Consider a clone of the .metagit repo a (Metagit) "clone" of your projects folder.
For example, push the .metagit repo to GitHub to allow for easy provisioning of new dev machines:
$ mkdir ~/projects
$ cd ~/projects/
$ git clone git@github.com:dmtucker/.metagit.git
...
$ metagit restore project2
Project details
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 metagit-1.4.0.tar.gz.
File metadata
- Download URL: metagit-1.4.0.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.1 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.12.0 keyring/23.9.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02f90b0c070c20dbcedb5028c9387fb50e622ee84fc1c54d2c21b252b6d9292
|
|
| MD5 |
685462d518161c48d64ee996129101d7
|
|
| BLAKE2b-256 |
06d44827854f3c52a4164f779b00af512761478025b38413df1a3b1ee8bd015b
|
File details
Details for the file metagit-1.4.0-py3-none-any.whl.
File metadata
- Download URL: metagit-1.4.0-py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.1 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.12.0 keyring/23.9.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b756cb97fb5f438d4d4b2b666e1092b036f375b5e6fddb8566a82e9a02c24211
|
|
| MD5 |
2ab46935211fcc8834ea8484252db08e
|
|
| BLAKE2b-256 |
9af2f31aac165c7473c2b6dc623ab3e0daa6234f90e31cd076176fcb72430c7d
|