1.6.0 • Published 1 year ago

mgre v1.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

mgre

Manage Git repository easily

Why mgre?

When you use git to clone a repository, the repository will be cloned to the current directory if you don't specify a directory. This means that you may need to determine the appropriate directory in which to clone the repository and set up the repository correct username and email to commit. While this may be easy to do once, git clone is often used, and the process can become time-consuming.

To resolve this problem, you can use mgre. With mgre, your directory structure will automatically be organized as follows:

.
├── github.com
│   └── zxf4399
│       └── mgre
└── gitlab.com
    └── zxf4399
        └── mgre

Node.js Compatibility Note: mgre requires Node.js v16+ or higher. Please upgrade your Node.js version if you are using an older version.

Install

# With pnpm
$ pnpm install -g mgre
# With yarn
$ yarn global add mgre
# With npm
$ npm install -g mgre

Config

mgre need a configuration file named config.json to work properly.

mgre will automatically create it in your home directory. For example, on MacOS the path is ~/.mgre/config.json.

Set up codebases

Note: name and email are optional.

{
    "codebases": [
        {
            "email": "zxf4399@gmail.com",
            "name": "zxf4399",
            "url": "github.com"
        }
    ]
}

Usage

Clone a repository

# support clone pattern like git clone
mgre clone https://github.com/zxf4399/mgre.git
# or
mgre clone git@github.com:zxf4399/mgre.git

After cloning, the repository will be moved to the base directory

base
├── config.json
├── github.com
│   └── zxf4399
│       └── mgre
└── mgre.db

Find a repository

# find support fuzzy search
mgre find zxf4399/mgre

If the repository is located, its path will be displayed; otherwise, no output will be generated.

Import existing repositories

If you have an existing repository that you want to import into mgre, you can use the import command.

# For example, if the repository's local path is ~/code/mgre
mgre import ~/code/mgre

After importing, the repository will be moved to the base directory

base
├── config.json
├── github.com
│   └── zxf4399
│       └── mgre
└── mgre.db

If you want to import multiple repositories, you can import them parent directory.

# For example, if the repository A's local path is ~/code/mgre
# and the repository B's local path is ~/code/zxf4399.github.io

mgre import ~/code

After importing, the repositories will be moved to the base directory

base
├── config.json
├── github.com
│   └── zxf4399
│       ├── mgre
│       └── zxf4399.github.io
└── mgre.db

Inspiration

License

MIT

1.6.0

1 year ago

1.5.2

1 year ago

1.5.1

1 year ago

1.5.0

1 year ago

1.4.2

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

1.2.0

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago