Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/voilalex/git-repo-cli


https://github.com/voilalex/git-repo-cli

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Git Repo CLI

Utils to easily create/delete/rename repository.

## Installation

To install git-repo-cli util type in your terminal:

```bash
pip install git-repo-cli
```

To use all the git-repo-cli functionality you should configure GitHub access token.

```bash
git-repo config --token
```

Now you can use it.

## Usage

To make usage of the cli easier `git-repo` is used, instead of `git-repo-cli`.
To get help on usage you can always add --help flag to the command:

```bash
git-repo --help
```

### Initialize repository

To initialize repository type the following in the terminal:

```bash
git-repo init
```

It will create folder with name of `` folder and initialize it
locally and remotely.

If you use other name on remote you should use the following pattern:

```bash
git-repo init -f
```

It will create repository with name `` on remote and with path `` locally.

### Delete repository

To delete a repository use the following command:

```bash
git-repo delete
```

### Rename repository

To rename a repository use the following command:

```bash
git-repo rename
```

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md)

## License

[MIT](LICENSE.md)