使用git本地跟踪项目后,如何将其添加到GitHub?
答案 0 :(得分:29)
GitHub在您在线创建存储库后为您提供说明。
cd
到具有本地存储库的目录
git remote add origin whatever-address-my-repository is.git
设置遥控器
然后进行提交,并推送到主分支。
git push -u origin master
答案 1 :(得分:4)
1.在您的本地仓库中创建README.md
(对于GitHub - *optional
)
2. git remote add origin <your_URL_for_github_repo.git>
(您可以输入origin
来验证您有git remote -v
。您可以看到<URL>.git
为origin
。
3.通过git commit -a -m "<a message>"
(重要!只有提交的文件才会被推送到Github)
4.现在按git push -u origin master
推送到GitHub(如果你推动主分支)。
每次推送都需要密码(如果你使用https:
克隆)。为了摆脱它;
在终端中,输入以下内容:
git config --global credential.helper cache
# Set git to use the credential memory cache
要更改默认密码缓存超时,请输入以下内容:
git config --global credential.helper 'cache --timeout=3600'
# Set the cache to timeout after 1 hour (setting is in seconds)
答案 2 :(得分:3)
在这里,您将找到有关如何创建存储库以及如何在Github上推送它的步骤:http://programertools.blogspot.com/2014/04/how-to-use-github.html