上传本地代码到github

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传本地代码到github相关的知识,希望对你有一定的参考价值。

  1. 在要上传代码的目录下右键,点击“Git Bash Here”;

  2. 如果本地没有配置过ssh,则需要在本地创建ssh key,

    $ ssh-keygen -t rsa -C "你的邮箱地址"

  3. 回到github网页,选择左侧列表的“ssh and GPG keys”,点击“new ssh key”按钮,将本地目录生成的

    id_rsa.pub中的key值拷贝到网页中,保存;

  4. 测试github连接是否成功,在gitbash中输入 ssh -T [email protected]

  5. 连接成功后,配置用户名和邮箱地址,进行身份认证。

    $ git config --global user.name "用户名"

    $ git config --global user.email "邮箱"

  6. git init

  7. git add .(add和点之间有空格)

  8. git commit -m "提交代码的注释"

  9. git remote add origin [email protected]:用户名/repo名称

  10. git push origin master//将本地项目更新到github项目上去

以上是关于上传本地代码到github的主要内容,如果未能解决你的问题,请参考以下文章

GitHub 从零开始的保姆级使用教程

GitHubgithub相关问题和解决办法

使用Git向GitHub上传代码

提交代码到github

如何将本地代码上传到github

如何将本地的代码上传到github