Chinaunix首页 | 论坛 | 博客
  • 博客访问: 855646
  • 博文数量: 188
  • 博客积分: 4433
  • 博客等级: 上校
  • 技术积分: 1905
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-14 07:14
个人简介

linux

文章分类

全部博文(188)

文章存档

2016年(6)

2015年(22)

2014年(18)

2013年(5)

2012年(125)

2011年(10)

2010年(2)

分类: LINUX

2014-06-11 21:44:27

安装git
#apt-get install git git-daemon
#mkdir -p /tmp/conf/conf.git
#cd /tmp/conf/confi.git
#git --bare init
#chown -R daemon.daemon /tmp/conf
#git daemon --base-path=/tmp/conf/ --detach --user=daemon --listen=127.0.0.1 --group=daemon --export-all --enable=receive-pack --enable=upload-pack --enable=upload-archive

复制配置文件到git
#cd /tmp/
#git clone git://127.0.0.1/puppet.git conf
#cp -r /etc/conf/* ./
#gitadd -A
#git commit -m "Add conf to Git"
#git push origin master
#rm -rf /etc/conf
#cd /etc
#git clone git://127.0.0.1/puppet.git

创建testing branch
#git branch
#git checkout -b tsting
#vim /etc/conf/aa.conf
#git commit -a ''testing"
#git push origin testing

阅读(1564) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

yzhkpli2014-12-29 13:27:17

没有将testing分支合并到主分支的节奏啊。