I did:

~$ mkdir projectname
~$ cd projectname
~$ git init
~$ touch file1
~$ git add file1
~$ git commit -m 'first commit'

So... Is there any git command to create a new remote repo and push my commit to GitHub from here? I know it´s no big deal to just fire up a browser and head over to Create a New Repository but if there is a way to achieve this from the CLI I would be happy.

I read a vast amount of articles but no one that I found mention how to create a remote repo from the CLI using git commands. Tim Lucas nice article Setting up a new remote git repository is the closest I get but GitHub does not provide shell access.

I guess what I look for is something equivalent to the HTTP Put but for Git/GitHub =P

DISCLAIMER: Started fiddling with Git five days ago so bare with me if it´s a newbie question =)

Thanks i advance fellow SOers!

link|improve this question
feedback

5 Answers

up vote 12 down vote accepted

You can create a GitHub repo via the command line using the GitHub API. Check out the repository API. If you scroll down about a third of the way, you'll see a section entitled "Creating and Deleting Repositories" that explains how to create a repo via the API (right above that is a section that explains how to fork a repo with the API, too). Obviously you can't use git to do this, but you can do it via the command line with a tool like curl.

Outside of the API, there's no way to create a repo on GitHub via the command line. As you noted, GitHub doesn't allow shell access, etc., so aside from the GitHub API, the only way to create a repo is through GitHub's web interface.

link|improve this answer
6  
Thanks a bunch mipadi! Didn´t know about the GitHub API. For everyone else with the same problem, this is what i basicly did: curl -F 'login=username' -F 'token=API Token' https://github.com/api/v2/yaml/repos/create -F name=reponame. Your API Token can be found on the GitHub site, click Account Settings, look for Administrative Information and API Token (32 character long string). – anddoutoi Mar 11 '10 at 20:58
feedback

There is an official github gem which, I think, does this. I'll try to add more information as I learn, but I'm only just now discovering this gem, so I don't know much yet.

UPDATE: After setting my API key, I am able to create a new repo on github via the create command, however I am not able to use the create-from-local command, which is supposed to take the current local repo and make a corresponding remote out on github.

$ gh create-from-local
=> error creating repository

If anyone has some insight on this, I'd love to know what I'm doing wrong. There's already an issue filed.

UPDATE: I did eventually get this to work. I'm not exactly sure how to re-produce the issue, but I just started from scratch (deleted the .git folder)

git init
git add .emacs
git commit -a -m "adding emacs"

Now this line will create the remote repo and even push to it, but unfortunately I don't think I can specify the name of the repo I'd like. I wanted it to be called "dotfiles" out on github, but the gh gem just used the name of the current folder, which was "jason" since I was in my home folder. (I added a ticket asking for the desired behavior)

gh create-from-local

This command, on the other hand, does accept an argument to specify the name of the remote repo, but it's intended for starting a new project from scratch, i.e. after you call this command, you get a new remote repo that's tracking a local repo in a newly-created subfolder relative to your current position, both with the name specified as the argument.

gh create dotfiles
link|improve this answer
feedback

This can be done with three commands:

curl -F 'login=nyeates' -F 'token=XXX' https://github.com/api/v2/json/repos/create -F 'name=projectname' -F 'description=This project is a test'
git remote add origin git@github.com:nyeates/projectname.git
git push origin master



Explanation of these commands...

Create github repo

curl -F 'login=nyeates' -F 'token=XXX' https://github.com/api/v2/json/repos/create -F 'name=projectname' -F 'description=This project is a test'
  • curl is a unix command (above works on mac to) that retrieves and interacts with URLs. It is commonly already installed.
  • "-F" is a curl parameter that allows you to send POST data with the request
  • "login" and "token" are explained on the github API General Info Page
    • Find the token on github under Account Setting > Account Admin > API Token
  • "json" represents the type of output you want to get back
    • json should be used over yaml or xml. json is the only forward supported output type
  • "name=" is the only POST data required; i like to also include "description="
  • I found that it was good to quote all POST data with single quotes ' '

Define where to push to

git remote add origin git@github.com:nyeates/projectname.git
  • add definition for location and existance of connected (remote) repo on github
  • "origin" is a default name used by git for where the source came from
    • technically didnt come from github, but now the github repo will be the source of record
  • "git@github.com:nyeates" is a ssh connection that assumes you have already setup a trusted ssh keypair with github.

Push local repo to github

git push origin master
  • push to the origin remote (github) from the master local branch
link|improve this answer
feedback

CLI commands for github API v3 (replace all CAPS keywords):

curl -u 'USER:PASS' https://api.github.com/user/repos -d '{"name":"REPO"}'
git remote add origin git@github.com:USER/REPO.git
git push origin master
link|improve this answer
feedback

You can create push by HTTP in git specification. But Github don't acces to that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.