gpt4 book ai didi

github - 为什么 git remote add 不起作用?

转载 作者:行者123 更新时间:2023-12-03 21:26:29 24 4
gpt4 key购买 nike

为什么我在键入 git remote add 时会看到错误消息?

$ git remote add origin remote repository https://github.com/hashanmalawana/Loginsystem.git
usage: git remote add [<options>] <name> <url>

-f, --fetch fetch the remote branches
--tags import all tags and associated objects when fetching
or do not fetch any tag at all (--no-tags)
-t, --track <branch> branch(es) to track
-m, --master <branch>
master branch
--mirror[=<push|fetch>]
set up remote as a mirror to push to or fetch from

最佳答案

你应该输入:

git remote add origin https://github.com/hashanmalawana/Loginsystem.git 

不是
git remote add origin remote repository https://github.com/hashanmalawana/Loginsystem.git
^^^^^^^^^^^^^^^^^^

这样,您添加了一个名为 origin 的 Remote 。 ,引用远程仓库 https://github.com/hashanmalawana/Loginsystem.git

你不会看到使用信息
usage: git remote add [<options>] <name> <url>

我知道“ Adding an existing project to GitHub using the command line”的第 8 步可能会令人困惑:
git remote add origin remote repository URL

但是最后三个参数实际上只有一个。它应该是:
git remote add origin <remote repository URL>

最好引用 actual man page for git remote
git remote add <name> <url>

关于github - 为什么 git remote add 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45662853/

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