Git是否有办法创建GitHub存储库,然后将文件推送到其master分支?谢谢!
答案 0 :(得分:0)
答案 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