Metadata-Version: 2.1
Name: multi-git
Version: 0.1.2
Summary: Multi-Git
Home-page: UNKNOWN
Author: Daniel Kullmann
Author-email: python@danielkullmann.de
License: MIT
Description: # MGit (Multi-Git)
        
        Do you have a lot of git repositories, distributed over your whole system?
        Would you like to manage them using a simple command, without the need to constantly
        switch directories?
        
        Use mgit to manage these repos.
        
        First use `mgit add /path/to/git/repo -t tag1`
        to add git repos. Then, use the standard git commands like `status`, `commit`, `pull` and
        `push` to execute those commands over all managed git repos. To limit the set of
        repos, you can use the `-t` (`--tags`) argument, that selects all repos that have
        at least one of these tags set. For example,
        
        ```
        mgit pull
        ```
        
        will pull the latest changes for all git repos that are managed by mgit.
        As another exampe,
        
        ```
        mgit status
        ```
        
        or
        
        ```
        mgit st
        ```
        
        will display all changes in all managed repos. As already mentioned, `-t` or `--tags`
        will limit the set of repos:
        
        ```
        mgit st -t work
        ```
        
Platform: UNKNOWN
Requires: toml
Requires: config_path
Description-Content-Type: text/markdown
