上传代码到github的步骤

Posted 水木神舟10

tags:

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

在你的电脑上装好git

大致流程是:

1、在github上创建项目

2、使用git clone https://github.com/xxxxxxx/xxxxx.git克隆到本地

3、编辑项目

4、git add . (将改动添加到暂存区)

5、git commit -m "提交说明"

6、git push origin master 将本地更改推送到远程master分支。

这样你就完成了向远程仓库的推送。

如果在github的remote上已经有了文件,会出现错误。此时应当先pull一下,即:

git pull origin master

然后再进行:

git push origin master




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

如何从git上传代码到github

把上传Github的代码添加Cocoapods支持

Git 上传代码步骤

上传本地代码到github

VIM 代码片段插件 ultisnips 使用教程

mac上将代码上传到github