创建Github存储库并仅通过git推送文件

时间:2018-11-19 03:06:22

标签: git github repository

Git是否有办法创建GitHub存储库,然后将文件推送到其master分支?谢谢!

2 个答案:

答案 0 :(得分:0)

安装集线器,然后使用hub create

它将询问您的github用户名/密码,然后将使用本地项目的目录名称创建公共存储库。

https://hub.github.com

答案 1 :(得分:0)

Git本身不会创建远程GitHub存储库。
只有GitHub API can do that

例如,无需安装任何GitHub API包装器,而使用git bash中的a command like

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

然后,在您的本地仓库中:

git remote add origin https://github.com/github-username/repo-name.git