Metadata-Version: 2.1
Name: autorepo
Version: 0.1.3
Summary: A simple, CLI-based tool for easier management of github repositories
Home-page: https://github.com/XanderWatson/autorepo
Author: Saahil Bhavsar
Author-email: saahil_bhavsar@outlook.com
Project-URL: Bug Reports, https://github.com/XanderWatson/autorepo/issues
Project-URL: Funding, https://buymeacoffee.com/saahilb
Project-URL: Source, https://github.com/XanderWatson/autorepo
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Utilities
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
License-File: LICENSE

# AutoRepo

A simple, CLI-based tool for easier management of github repositories.

## Installation

- Run the following command to install AutoRepo.

```
$ pip install autorepo
```

## Usage

- After the installation is complete, you can run the following command to start AutoRepo (this will print the help message):

```
$ repo
```

- Using any command (displayed in the help message) requires you to first be logged in to your github account using an access token (this is a one-time thing). You can generate an access token by following the instructions [here](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/).

```
$ repo --login
```

Or

```
$ repo -l
```

- After logging in, you can use any of the commands displayed in the help message.
- For example, to create a new repository on GitHub, and subsequently clone it, you can run the following command:

```
$ repo <repo_name> [OPTIONS]
```

- To list all the repositories created by the current logged in user, you can run the following command:

```
$ repo -r
```

- To clone a repository, you can run the following command:

```
$ repo -c <repo_name>
```

- Or if you are not the owner of that repository, you can run the following command:

```
$ repo -c "<repo_user>/<repo_name>"
```

- You can view all the available licenses using the following command:

```
$ repo --licenses
```

- You can view all the available gitignore templates using the following command:

```
$ repo --gitignore-templates
```

- To logout of your github account, you can run the following command:

```
$ repo --logout
```

- To view the help message, you can run the following command:

```
$ repo --help
```
