Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voilalex/git-repo-cli
https://github.com/voilalex/git-repo-cli
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/voilalex/git-repo-cli
- Owner: VoIlAlex
- License: mit
- Created: 2020-02-12T03:14:54.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-10T19:49:24.000Z (over 1 year ago)
- Last Synced: 2024-11-01T09:39:35.330Z (2 months ago)
- Language: Python
- Size: 44.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
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)