github-自我使用-滑稽
git windows版下载地址:
https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe
直达-->百度云地址 <-直达
https://pan.baidu.com/s/1pr0EDO1kAhxz0G2GE9HIkA
安装git windows版后
git config --global user.name "John Doe" //修改为自己的 git config --global user.email johndoe@example.com //修改为自己的
1. 远程创建
2. 克隆远程仓库
git clone https://github.com/YourXin/Testbmxx.git
本地已有仓库的情况下
添加远程仓库
git remote add origin https://github.com/YourXin/Testbmxx.git
第一次提交使用 git push -u origin master
git push -u origin master
后面提交使用 ,不用加 -u
git push origin master