Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

9 Answers

up vote 36 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.

share|improve this answer
15  
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
It seems this is out of date, at least I do not find the API Token there. – Joachim Breitner Jun 13 '12 at 17:49
Yes, version 2 of the API is marked as obsolete and they want us to use version 3. I havn´t yet grokked v3 but when I get the time I will try to wrap my head around it. – anddoutoi Jun 27 '12 at 19:32
3  
API Version 3 Syntax given below via @bennedich stackoverflow.com/a/10325316/305633 – JiminyCricket Aug 23 '12 at 8:36

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

curl -u 'USER' https://api.github.com/user/repos -d '{"name":"REPO"}'
git remote add origin git@github.com:USER/REPO.git
git push origin master
share|improve this answer
2  
this is the correct answer – nurettin Nov 17 '12 at 16:52
8  
The slight problem with first command is that you are leaving your GitHub password in your ~/.bash_history. I would suggest replace -u 'USER:PASS' with -u 'USER', then curl will ask you for password interactively. – ivanzoid Dec 1 '12 at 14:31
To make the repo private from the start, use: curl -u 'USER' https://api.github.com/user/repos -d '{"name":"REPO", "private":"true"}' – Joe Fletcher Mar 21 at 4:05
I wrote a bash script to save us all some typing. Takes user input and has sensible defaults: gist.github.com/robwierzbowski/5430952 – RobW Apr 21 at 20:35

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
share|improve this answer
Tokens are dead. Long live tokens. – alex gray Aug 3 '12 at 22:50

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
share|improve this answer

If you install defunkt's excellent Hub tool, then this becomes as easy as

git create

In the words of the author, "hub is a command-line wrapper for git that makes you better at GitHub."

share|improve this answer

I wrote a nifty script for this called Gitter using the REST APIs for GitHub and BitBucket:

https://github.com/dderiso/gitter

BitBucket:

gitter -c -r b -l javascript -n node_app

GitHub:

gitter -c -r g -l javascript -n node_app
  • -c = create new repo
  • -r = repo provider (g = GitHub, b = BitBucket)
  • -n = name the repo
  • -l = (optional) set the language of the app in the repo
share|improve this answer

For directions on creating a token, go here This is the command you will type (as of the date of this answer. (replace all CAPS keywords):

curl -u 'YOUR_USERNAME' -d '{"scopes":["repo"],"note":"YOUR_NOTE"}' https://api.github.com/authorizations

Once you enter your password you will see the following which contains your token.

{
  "app": {
    "name": "YOUR_NOTE (API)",
    "url": "http://developer.github.com/v3/oauth/#oauth-authorizations-api"
  },
  "note_url": null,
  "note": "YOUR_NOTE",
  "scopes": [
    "repo"
  ],
  "created_at": "2012-10-04T14:17:20Z",
  "token": "xxxxx",
  "updated_at": "2012-10-04T14:17:20Z",
  "id": xxxxx,
  "url": "https://api.github.com/authorizations/697577"
}

You can revoke your token anytime by going here

share|improve this answer

Or, there's this as github says after you create a repo:

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jstreebin/whatever.git
git push -u origin master
share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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