是否可以在不打开浏览器的情况下从CLI在GitHub上创建远程仓库?
我创建了一个新的本地Git存储库: ~$ mkdir projectname ~$ cd projectname ~$ git init ~$ touch file1 ~$ git add file1 ~$ git commit -m 'first commit' 是否有任何git命令来创建一个新的 远程 仓库并从此处将我的提交推送到GitHub? 我知道启动浏览器并转向 创建新存储库 没什么大不了的,但如果有办法从CLI实现这一点,我会很高兴。 我阅读了大量文章,但我没有提到如何使用git命令从CLI创建远程仓库。 Tim Lucas的好文章 设置一个新的远程git存储库 是我找到的最接近的, 但GitHub不提供shell访问 。 #1楼 用于github API v3的CLI命令(替换所有CAPS关键字): curl -u 'USER' https://api.github.com/user/repos -d '{"name":"REPO"}' # Remember replace USER with your username and REPO with your repository/application name! git remote add origin git@github.com:USER/REPO.git git push origin master #2楼