码迷,mamicode.com
首页 > 其他好文 > 详细

git服务端搭建与使用

时间:2015-04-13 16:31:48      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

打开cmd,输入ssh git@172.17.101.89(为本机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 "zzjzmdx@163.com"
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 git@172.17.101.89:/cygdrive/c/ICW/var/zzjzmdx  zzjzmdx 可得到项目

技术分享

修改zzjzmdx.cpp

技术分享

目前

技术分享

增加新的用户,并以此用户提交

git init
git add .
git config --global user.name "zzjzmdx"
git config --global user.email "zzjzmdx@163.com"
git commit -m "first commit"

如图通过git log master 查看本地提交版本

技术分享

此时查看服务端,服务端修改未被提交

技术分享

本地提交到服务器

技术分享

服务器端查看,版本已被提交

技术分享

服务器端对比修改(有增有减)

技术分享

完成

git服务端搭建与使用

标签:

原文地址:http://www.cnblogs.com/liujin0505/p/4422391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!