1、在服务器上创建共享文件夹
2、设置映射网络驱动器
右键此电脑,选择映射网络驱动器
3、服务器上共享文件夹内创建git裸仓库
使用命令:git init -bare
4、在本地创建空文件夹
使用git clone Z:\testgit.Git
克隆服务器上代码
如提示设置 user.name 和 user.email,设置后再重新使用clone命令
修改本地代码提交
git add . 添加当前目录全部文件至暂存区
git commit -m '测试' 提交,提交信息为测试
git remote add origin 'git仓库地址' // 链接远程地址
git push origin master 推送至远端分支(master为需要推送分支,按实际需要选择)
git pull origin master 合并远端分支至本地 (git pull 等于 git fetch + git merge)
git pull -