使用git在局域网内进行版本管理(无git服务器)

1)创建一个本地远程仓库

a.首先进入到仓库路径D:/gitstore/ImageVision中

b.初始化git

git init

c.配置仓库

git config --global receive.denyCurrentBranch ignore

d.修改.git/hooks/post-update.sample文件,如下所示:

#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".

#exec git update-server-info
unset GIT_DIR
cd ..
git checkout -f

e.将该文件后缀删除,变为post-update

2)创建本地仓库,并与本地远程仓库关联,使用git remote -v命令查看关联的远程仓库

git remote add origin D:/gitstore/ImageVision

3)将本地远程仓库文件夹设置为共享文件夹,以便在局域网中进行代码分享

a.右键文件夹—>属性—>共享—>高级共享—->勾选共享此文件夹—->权限如下:

使用git在局域网内进行版本管理(无git服务器)_第1张图片

b.在另一台机器上右键计算机—>映射网络驱动器,使得其他机器可以访问此远程仓库

你可能感兴趣的:(软件工程化,git)