Metadata-Version: 2.1
Name: get-repo
Version: 0.1.3
Summary: Small cli utility for cloning git repos in an orderly manner
Home-page: https://github.com/florian42/get-repo
License: MIT
Author: Florian
Author-email: hey@flo.fish
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: GitPython (>=3.1.27,<4.0.0)
Requires-Dist: git-url-parse (>=1.2.2,<2.0.0)
Requires-Dist: typer (>=0.4.0,<0.5.0)
Project-URL: Repository, https://github.com/florian42/get-repo
Description-Content-Type: text/markdown

# get-repo
> A small cli utility for cloning git repositories in an orderly manner.

`get-repo` clones git repositories into `$HOME/source/{host}/{owner}/{repository-name}`

## Installation

OS X & Linux & Windows:

```sh
pip install get-repo
```

## Usage example

```sh
get-repo https://github.com/florian42/get-repo.git
get-repo git@github.com:florian42/get-repo.git
```

Clones the git repository get-repo into `~/source/github.com/florian42/get-repo`

## Development setup

- Install Python 3.x
- Install [Poetry](https://python-poetry.org/docs/)

```sh
poetry install
poetry run pre-commit install
poetry run pre-commit run --all-files
```

## Release History
* 0.1.3
    * Use gitpython instead of subprocess
    * Dependency Updates
* 0.1.2
    * Initial Release

## Meta

Florian Aumeier – hey@flo.fish

Distributed under the MIT license. See ``LICENSE`` for more information.

[https://github.com/florian42/get-repo](https://github.com/florian42)

## Contributing

1. Fork it (<https://github.com/florian42/get-repo/fork>)
2. Create your feature branch (`git checkout -b feature/fooBar`)
3. Commit your changes (`git commit -am 'Add some fooBar'`)
4. Push to the branch (`git push origin feature/fooBar`)
5. Create a new Pull Request

