标签:
从Git官网下载、安装client
在開始菜单中找到 Git Bash 并打开
配置身份
git config --global user.name "pengkv"
git config --global user.email "pengkv@126.com"
验证是否配置成功
git config --global user.name
git config --global user.email
进入本地项目的文件夹下
创建代码仓库
git init
提交单个文件
git add app
提交全部文件
git add .
提交描写叙述信息(一定要提交,否则被觉得不合法)
git commit -m "First commit"
在Github上创建一个空项目
上传代码
git remote add origin https://github.com/pengkv/GitStar.git
git push -u origin master
提交成功后
标签:
原文地址:http://www.cnblogs.com/mengfanrong/p/5185707.html