我有一个目录说 cplusplus_learn ,我的用户名是 apex_user (比如说) git 。在cplusplus_learn中,有一些我正在练习C ++语言的文件和目录。我想创建一个与 cplusplus_learn 同名的存储库,并推送GITHUB网站中的所有内容。有人可以向我解释完成这一步骤的完整步骤。 我经历了各种各样的链接但完全糊涂了。大多说已经有回购。
convert-existing-non-empty-directory-into-a-git-working-directory
github-error-repository-not-found-fatal
注意:我想从终端做的所有事情。
$ cd cplusplus_learn
$ git init .
$ git commit -m 'My first commit'
$ git remote add origin https://github.com/apex-user.git
fatal: remote origin already exists.
$ git push -u origin master
fatal: repository 'https://github.com/apex-user/' not found
以上是我试过的。我知道有什么不对,但我无法弄明白。
答案 0 :(得分:2)
首先,您需要登录您的github帐户 并创建一个名为cplusplus_learn
的存储库我想从终端做的所有事情。 就像你已经描述过的那样。根据您的描述,您似乎已经设置了错误的远程网址,因此您需要更新或重置它,如下所示
$ cd cplusplus_learn
$ git init
$ git commit -m 'My first commit'
$ git remote set-url origin https://github.com/apex-user/cplusplus_learn.git
$ git push -u origin master
希望这应该有效。谢谢:))
答案 1 :(得分:0)
cplusplus_learn
。git init
。git remote add origin https://github.com/apex-user/RepoName.git
git add -A
git commit -m "Message you would like to put"
git push origin master
答案 2 :(得分:0)
您可以使用 git hub cli https://cli.github.com/manual/gh_repo_create