Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anuj-thakur-513/github-cli
https://github.com/anuj-thakur-513/github-cli
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anuj-thakur-513/github-cli
- Owner: anuj-thakur-513
- Created: 2024-06-25T16:53:44.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-28T05:25:08.000Z (7 months ago)
- Last Synced: 2024-11-15T05:32:03.571Z (2 months ago)
- Language: JavaScript
- Size: 386 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub CLI
GitHub CLI commands to manage basic things from command-line itself, e.g. Create Repo from CLI
## Screenshots
![](/github_assets/gh-create-repo%20help.jpg)
![](/github_assets/create%20repo.jpg)## Folder Structure
```
.
├── bin
│ └── index.js
├── github_assets
│ ├── create repo.jpg
│ └── gh-create-repo help.jpg
├── utils
│ └── createRepo.mjs
├── README.md
├── package-lock.json
└── package.json
```## Run Locally
```
Replace GITHUB_ACCESS_TOKEN with your own access token in .env.example and change the file name to .env
```Clone the Project
```bash
git clone https://github.com/anuj-thakur-513/GitHub-CLI.git
```Change Directory to the Project
```bash
cd GitHub-CLI
```Install the Dependences
```bash
npm install
```Install the command globally to your system
```bash
npm install -g .
```Run the following command to know how to use it to create repos on github
```bash
gh-create-repo --help
```