下载 git bash:http://git-scm.com/download/win
从github仓库中下载项目到本地:git clone 项目网址
,得到一个文件夹
…
修改文件
…
修改完成后,进行上传的过程:
文件夹右键通过 git bash 进入
初始化:git init
配置用户信息:git config --global user.email "your.email@example.com"
查看当前的文件状态:git status
添加所有更改到暂存区:git add .
提交更改:git commit -m "描述你的更改"
将本地的提交推送到远程仓库:git push