我想把我的项目放到github,但我总是失败。 我使用以下步骤来执行此操作:
git pull git@github.com:myAccount/myProject.git
git add .
git commit -m "inital"
git push -u origin master
之后,我在safari中打开github,我的项目存在。 但问题是文件夹TestPro无法打开,并且它下面没有任何内容。
有人能告诉我如何将现有项目添加到github吗? 我已经阅读了github上的说明,但我仍然找不到解决方案,我错在哪里。
我引用的本地项目是本地git存储库。有关系吗?我应该先退房吗?
谢谢!
答案 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上创建了一个新的仓库,最简单的方法是使用它:
答案 2 :(得分:0)
您必须在推送之前添加远程位置。 git remote add origin git@github.com:myAccount / myProject.git http://help.github.com/create-a-repo/转到“关于遥控器的更多内容”
答案 3 :(得分:0)
在github上创建项目后,你有:
git clone git@github.com:myAccoun/myProject.git
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