github 下载修改上传使用

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_39634987/article/details/78417956

1.右击打开Git Bash Here

$ git config --global user.name "name"

$ git config --global user.email "[email protected]"

2.下载

git clone +地址 

3.

git add  文件名

4.修改代码

5.上传
git commit  -m  "第一次提交"
$ git status
git push


更多关于git命令请看

http://blog.csdn.net/dengsilinming/article/details/8000622

猜你喜欢

转载自blog.csdn.net/qq_39634987/article/details/78417956