尝试运行“ git push”时请继续获取此错误:
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>
我已经执行了此过程,但是随后出现另一个错误:
fatal: 'angrails-front' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
不确定从现在开始该怎么做...
答案 0 :(得分:2)
尝试先克隆存储库:如果成功,将来的提取操作也会成功。
之后,修改文件,添加,提交和推送
cd /a/path
git clone https://github.com/Roeck/angrails-front
cd angrails-front
# modify a file
git add .
git commit -m "new commit"
git push
答案 1 :(得分:1)
我将从笔记开始。
注意:如果您获得的似乎不是git存储库,请从项目目录中运行git init
。
首先通过运行检查您是否具有原始远程设置
git remote -v
它应该显示如下内容
origin: some_url (push)
origin: some_url (fetch)
如果未显示上述任何内容,则必须手动添加。 执行以下操作
git remote add origin <your_origin_url>
在上面,<your_origin_url>
是您的项目存储库。
要获取项目存储库,只需在github中打开您的项目并复制url。
现在尝试git push
应该可以工作。如果不是,请在下面评论。
答案 2 :(得分:0)
最后注意到了错误。我有一个同名的子文件夹,直到现在才注意到。这就是git变得困惑的原因。傻,我知道。谢谢大家!