Git is a great version control system and Github is superb hosting service for git based repositories.
Github provides a nice web interface to create (blank) repositories at the start of project. But why visit github.com to create a blank repository, so here’s a simple bash script to make this simple task even simpler.
Script is based on Curl and GithubApi.
Add this to bash_profile and reload it. Done 🙂
Use git-create
to summon .
Be sure to configure github username and access_token in global git configure file.
Hint:
git config --global user.name <username>
git config --global user.token <access_token>
Advertisements