0.02
No commit activity in last 3 years
No release in over 3 years
create-repo is a ruby gem that automatically creates a Github repository and pushes your local repo to the remote repo. No need to go to the browser and sign in to Github.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 4.0
 Project Readme

create-repo

create-repo is a ruby gem that automatically creates a Github repository and pushes your local repo to the remote repo. No need to go to the browser and sign in to Github.

Install the gem

Install via Rubygems

gem install create-repo

Or add to your Gemfile

gem "create-repo", "~> 1.0.0"

Using create-repo

Inside your project directory, run

create-repo

Provide your Github credentials and fill in the repository details as asked by the prompts that follow.

That's it! create-repo will automatically do the following for you:

  1. Create a repository on Github
  2. Initialize an empty git repository in the current directory
  3. Add the remote origin
  4. Add all the untracked files
  5. Create an initial commit
  6. Push to the remote repository that was just created