在github上管理项目

时间:2012-05-14 06:39:03

标签: git github

我想把我的项目放到github,但我总是失败。 我使用以下步骤来执行此操作:

  1. 在github上创建一个新的存储库,
  2. 在我的磁盘中,我创建了一个文件夹LocalGit并将其初始化。然后我用 git pull git@github.com:myAccount/myProject.git
  3. 我将项目目录TestPro添加到LocalGit,然后使用: git add . git commit -m "inital"
  4. 最后,我尝试将其推送到github,使用: git push -u origin master
  5. 之后,我在safari中打开github,我的项目存在。 但问题是文件夹TestPro无法打开,并且它下面没有任何内容。

    有人能告诉我如何将现有项目添加到github吗? 我已经阅读了github上的说明,但我仍然找不到解决方案,我错在哪里。

    我引用的本地项目是本地git存储库。有关系吗?我应该先退房吗?

    谢谢!

5 个答案:

答案 0 :(得分:1)

在github上创建回购后

1)配置ssh-keys,然后设置你的git.username和git.email

2)使用git clone

克隆回购
git clone git@github.com:username/somerepo.git

3)进行更改,将其提交到本地仓库并通过git push

推送到远程

5)????

6)Proffit

答案 1 :(得分:0)

如果您在GitHub上创建了一个新的仓库,最简单的方法是使用它:

  • 在本地克隆它(在本地仓库中定义远程'origin')
  • 在该本地克隆仓库中复制您的项目

答案 2 :(得分:0)

您必须在推送之前添加远程位置。     git remote add origin git@github.com:myAccount / myProject.git http://help.github.com/create-a-repo/转到“关于遥控器的更多内容”

答案 3 :(得分:0)

在github上创建项目后,你有:

  1. 使用git clone git@github.com:myAccoun/myProject.git
  2. 在本地克隆您的项目
  3. 触摸测试; git add test; git commit -a -m“first commit”
  4. 在你之后:git push origin master
  5. git pull是git fetch和git merge。之后使用它来刷新您的存储库。 .git由git自动管理,因此没有必要添加到track。

答案 4 :(得分:0)

步骤如下:

1. cd "/path/to/project_folder"
2. git init
3. git add .
4. git commit -m "Your Message"
5. git remote add github https://github.com/[your_user_name]/[repo_name]
6. git push origin master

或者,如果您想先克隆。然后,

1. git clone git@github.com/[your_user_name]/[repo_name]

然后,您可以更改您克隆的文件。

接下来,使用以下命令:

2. git add .
3. git commit -m "Your Message"
4. git remote add github https://github.com/[your_user_name]/[repo_name]
4. git push origin master