命令行方式下在Github上新建远程仓库并PUSH

   找到   GitHub的API ,  发POST就可以新建,于是使用curl构造POST:

curl -u 'username' https://api.github.com/user/repos -d '{"name":"RepoName"}'

    ---- username 为你的用户名,RepoName 是你想命名的仓库名。回车后,密码正确就创建成功了。

  然后开始新建仓库并Push咯。

git remote add origin [email protected]:username/RepoName.git

git push origin master


OK.

你可能感兴趣的:(命令方式新建仓库)