git服务器搭建
git可以追溯和查看修改过痕迹,什么场景可以用到git:
-
写文章,写代码
-
多人协作
学习git参考:https://www.liaoxuefeng.com/wiki/896043488029600/899998870925664
搭建bare仓库作为中心服务器
sudo apt-get install openssh-server
sudo adduser git
sudo git init --bare sample.git
sudo chown -R git:git sample.git
//现在有了一个空的仓库,接下可以往这个空仓库push
将已有的代码push到git服务器
cd /path/your_example
git remote remove localgit
git remote add localgit git@192.168.9.1:/home/gitrepo/ws-server-irp.git
git push localgit master
git分布式非空仓库
被push的机器上: git config receive.denyCurrentBranch warn