美文网首页
GitHub同步本地项目

GitHub同步本地项目

作者: yang10147 | 来源:发表于2017-03-11 20:40 被阅读0次

这篇不想写了,直接看http://www.cnblogs.com/Chenshuai7/p/5486278.html

简单说,就是先在GitHub上点击create repository按钮

在项目目录下打开Git Bash

首先配置自己的身份,这样在提交代码的时候就能知道是谁提交的

输入git config --global user.name "名字"

git config --global user.email "邮箱地址"

git init

git add .

git commit -m "First commit"

输入GitHub给你的推送地址

git push origin master

输入GitHub用户名和密码

等待推送完成

相关文章

网友评论

      本文标题:GitHub同步本地项目

      本文链接:https://www.haomeiwen.com/subject/ijjzgttx.html