yum -y install git
useradd git
ssh-copy-id -i /path_prefix/id_rsa.pub user@ip:port(user是git),如果不成功那么直接复制粘贴,
#!/bin/sh
DIR=/data/test/sample
git --work-tree=${DIR} clean -fd
# 直接强制检出
git --work-tree=${DIR} checkout --force
useradd git
cd /data/git/
git init --bare test.git (git test项目仓库就创建好了,test.git是一个目录,和svn类似)
git clone ssh://git@hostname:port/.../xxx.git
配置git用户,可随意填写,最好用自己的名称
git config --global user.name "custom name"
git config --global user.email 'custom email'
如果用了 --global 选项,那么更改的配置文件就是位于你用户主目录下的那个,以后你所有的项目都会默认使用这里配置的用户信息。
如果要在某个特定的项目中使用其他名字或者电邮,只要去掉 --global选项重新配置即可,新的设定保存在当前项目的 .git/config 文件里。
以上步骤完成后
配置免密push
ssh-copy-id -i /path_prefix/id_rsa.pub user@ip:port(user是git),如果不成功那么直接复制粘贴,
ssh-add ~/.ssh/id_rsa_local (把私钥添加到ssh agent缓存中)
执行ssh-add时出现Could not open a connection to your authentication agent
执行ssh-agent bash
ssh-add -l 出现The agent has no identities表示还没有添加任何私钥到缓存
#!/bin/sh
DIR=/data/test/sample
git --work-tree=${DIR} clean -fd
# 直接强制检出
git --work-tree=${DIR} checkout --force