gpt4 book ai didi

git - 是否可以在不打开浏览器的情况下从 CLI 在 GitHub 上创建远程仓库?

转载 作者:IT王子 更新时间:2023-10-29 01:11:54 24 4
gpt4 key购买 nike

我创建了一个新的本地 Git 存储库:

~$ mkdir projectname
~$ cd projectname
~$ git init
~$ touch file1
~$ git add file1
~$ git commit -m 'first commit'

是否有任何 git 命令可以创建一个新的远程 存储库并将我的提交从这里推送到 GitHub?我知道启动浏览器并没有什么大不了的前往 Create a New Repository ,但如果有办法从 CLI 实现这一点,我会很高兴。

我阅读了大量文章,但没有一篇文章提到如何使用 git 命令从 CLI 创建远程仓库。蒂姆·卢卡斯 (Tim Lucas) 的精彩文章 Setting up a new remote git repository是我找到的最接近的,但 GitHub 不提供 shell 访问

最佳答案

github API v3 的 CLI 命令(替换所有大写关键字):

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

关于git - 是否可以在不打开浏览器的情况下从 CLI 在 GitHub 上创建远程仓库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2423777/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com