在linux上搭建GIT服务器 2021-05-13 编程工具 git 0 评论 1、创建一个linux用户1adduser git 2、切换到git用户1su git 3、创建该git用户的秘钥12345678910111213141516git@MC-PC1:~$ pwd/home/git# 创建秘钥ssh-keygen -o# 将公钥秘钥移到目录下面touch .ssh/id_rsa.pub >> authorized_keys# 结果如下ll .sshdrwx------ 2 git git 4096 May 13 17:18 ./drwxr-xr-x 3 git git 4096 May 13 17:11 ../-rw------- 1 git git 564 May 13 17:19 authorized_keys-rw------- 1 git git 2590 May 13 17:12 id_rsa-rw-r--r-- 1 git git 564 May 13 17:12 id_rsa.pub 4、创建Git项目123# 创建Git目录mkdir /mnt/e/phpstudy_pro/www/shidao-dms.gitgit init --bare 报错: git@MC-PC1:/mnt/e/phpstudy_pro/www/shidao-dms.git$ git init –bareerror: chmod on /mnt/e/phpstudy_pro/www/shidao-dms.git/config.lock failed: Operation not permittedfatal: could not set ‘core.filemode’ to ‘false’ 解决: 根据这个链接操作后,无效,不过还是值得一试。http://www.lvesu.com/blog/main/cms-821.html