从github克隆项目以及上传文件到github

一、从github克隆项目到本地

1.git下载

2.file---settings---version control---git ---path (为git.exe的路径D:\Program Files (x86)\Git\bin\git.exe)

3.cvs---checkout from---github

二、更新代码再上传到github

在项目目录 

git add .

git commit -m "update test"

git push -u origin master

你可能感兴趣的:(从github克隆项目以及上传文件到github)