0

当我创建我的第一个项目时,我在我的机器上创建了一个 repo(比如说project1github account,然后将它克隆到我的机器中。然后每当我机器中的代码更新时推送到它。

现在我创建了另一个项目——比如说project2在我的机器上。对其进行测试,使用git init. 我想把这个项目推送到 github。为此,我创建了repo一个github名为project2. 它现在有一个.gitignorereadme.md文件。

现在,如何将现有代码添加到此?当我 cd 到我的project2目录并尝试git push时,我收到此错误:

fatal: No destination configured to push to.

我试过git push project2

fatal: 'project2' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

请帮我纠正这个错误

4

3 回答 3

8

步骤是:

  1. cd project_directory
  2. git init
  3. git add .
  4. git commit -m "your_commit_message"
  5. git remote add origin https://github.com/[your_user_name]/[repo_name]
  6. git push origin master
于 2012-10-09T16:46:17.663 回答
6

您需要将新存储库添加为远程:

git remote add project2 git@github.com:Nickname/project2.git
于 2012-06-04T16:06:57.463 回答
2
  1. 在您的 github 主页上创建存储库。当被问到时,不要选择创建 .gitignore 和 README.md 文件。
  2. 在屏幕底部,将出现命令行说明,解释如何将现有存储库推送到 github 上新创建的存储库:

    git remote add origin git@github.com:[your_user_name]/[repo_name].git

    git push -u origin master

于 2013-12-19T01:17:51.170 回答