标签:clone win for user releases 安装git 仓库 修改 you
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 origin master
标签:clone win for user releases 安装git 仓库 修改 you
原文地址:https://www.cnblogs.com/bigorang/p/9645381.html