打开cmd,输入ssh [email protected](为本机ip)
输入git如显示git帮助贼表示ssh和git安装成功(如下图)
2.使用
a.git命令行使用(只介绍一点基本使用如过有别的需求,请阅读progit中文文档,我的资源里有)
a.1服务端加入项目
随便考一个项目到C:\ICW\var目录下(本人项目为zzjzmdx)
cmd命令行 进入项目
执行如下命令
git init
git add .
git config --global user.name "zzjzmdx"
git config --global user.email "[email protected]"
git commit -m "first commit"
修改.git/config文件加入
(如果不加 可能出现提交报错
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: ‘receive.denyCurrentBranch’ configuration variable to ‘refuse’.)
[receive]
denyCurrentBranch = ignore
a.2客户端clone项目
cmd进入到f盘下
执行git clone [email protected]:/cygdrive/c/ICW/var/zzjzmdx zzjzmdx 可得到项目
修改zzjzmdx.cpp
原
目前
增加新的用户,并以此用户提交
git init
git add .
git config --global user.name "zzjzmdx"
git config --global user.email "[email protected]"
git commit -m "first commit"
如图通过git log master 查看本地提交版本
此时查看服务端,服务端修改未被提交
本地提交到服务器
服务器端查看,版本已被提交
服务器端对比修改(有增有减)
完成