将本地代码添加到github

Posted 紫色年华

tags:

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

 

首先在github上创建一个仓库。

 

第一步:建立本地仓库

  git init

关联远程仓库

git remote add origin https://github.com/tshua/***.git

pull一下

  git pull (git pull origin master)

第二步:添加项目文件

  git add 文件、目录

第三步:commit

  git commit -m "注释"

第四步:

  git push -u origin master

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

VSCode下使用git

Git-往返github和本地

提交代码到github

Github for Mac 常见问题解答

window下配置SSH连接GitHubGitHub配置ssh key(转载自 http://jingyan.baidu.com/article/a65957f4e91ccf24e77f9b11.h

将本地代码添加到github