使用git本地跟踪项目后,如何将其添加到GitHub?

时间:2012-06-30 17:58:45

标签: git github

使用git本地跟踪项目后,如何将其添加到GitHub?

3 个答案:

答案 0 :(得分:29)

GitHub在您在线创建存储库后为您提供说明。

cd到具有本地存储库的目录

git remote add origin whatever-address-my-repository is.git设置遥控器

然后进行提交,并推送到主分支。

git push -u origin master

https://help.github.com/articles/create-a-repo

答案 1 :(得分:4)

1.在您的本地仓库中创建README.md(对于GitHub - *optional

2. git remote add origin <your_URL_for_github_repo.git>

(您可以输入origin来验证您有git remote -v。您可以看到<URL>.gitorigin

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