dhruwlalan / quickrepo

A simple command to quickly create a github repository.

Home Page:http://npm.im/@dhruwlalan/quickrepo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quickrepo

A single command to quickly create a repository locally & also host it on github.

NPM npm npm

Why?

Creating repository and hosting it on Github feels quite repetitive & contains quite a few steps (initializing local repo → create new repo on Github → add remote → push to Github) if you are someone who creates a lot of repositories (in this way).

With quickrepo all you have to do is just run the command $ qr init, enter remote repository details and DONE.

quickrepo will create the local repository (if it is already not a git repository or else it will just host it) , create the remote repository, add the remote, push to Github. (It will also set the local branch to track the remote branch i.e up-stream branch) .

Installation

$ npm install -g @dhruwlalan/quickrepo

Prerequisites

  • Make sure you have node and git installed.
  • You will also need to generate a github personal access token with the scope of repo checked. The generated token will be required when setting up your app so store it somewhere temporarily or copy it into the clipboard.

Usage

First, run the below command to setup the app by providing the github personal access token that you generated and copied.
You will get the input prompt for pasting in the personal access token.

$  qr setup

you only need to run the setup once or if the stored token becomes invalid or if you purposely want to override the stored token with a new token.

Second, run the below command inside any directory you wish to make it a git repository & also host it onto github.

$  qr init

This command will automatically set up your local repository's remote (with the name origin) linked with the created host repository on github so you need not have to worry about it!

Available Commands

command description
qr setup To setup the app by providing github's personal access token.
qr verify To verify the stored token if its valid or invalid.
qr init To create a repository locally & host it onto github.

License

MIT © 2021 dhruw lalan

About

A simple command to quickly create a github repository.

http://npm.im/@dhruwlalan/quickrepo

License:MIT License


Languages

Language:TypeScript 100.0%