git伺服器安裝

2021-08-19 08:37:28 字數 685 閱讀 2953

【伺服器端】

# id git

# useradd git

# cd /data/git

# git init --bare lailei.git

# chown -r git:git lailei.git

【客戶端】

收集所有需要登入的使用者的公鑰,就是他們自己的id_rsa.pub檔案,把所有公鑰匯入到/home/git/.ssh/authorized_keys檔案裡,一行乙個。

# git clone [email protected]:/data/git/lailei.git

埠不是22

# git clone ssh:

報錯如下:

bash: git-upload-pack: command not found

fatal: the remote end hung up unexpectedly

解決: ln -s /usr/local/git/bin/git-upload-pack /usr/bin/git-upload-pack 

【禁用shell登入】

# /etc/passwd

將git:x:1001:1001::/home/git:/bin/bash

改為git:x:1001:1001::/home/git:/usr/local/git/bin/git-shell

Git伺服器安裝

git是乙個不錯的版本管理的工具。現在自己在搞乙個簡單的應用程式開發,想使用git來進行管理。在google了配置文件後,還是受了n多的挫折。某些文件質量不高,浪費了好多時間.好,切入正題 安裝必要的git工具 apt get install git git core 安裝好了以後,進行設定 1.建...

安裝git伺服器

先安裝copssh 4.9.1 personal installer 再裝 git 1.9.2 preview20140411 use git from git bash only checkout windows 開啟開始選單git bash pwd 檢視當前目錄 cd開啟目錄 可以任意新建乙個資...

debian下安裝git伺服器

linux 做為伺服器端系統,windows 作為客戶端系統,分別安裝 git 伺服器端 yum install y git安裝完後,檢視 git 版本 root localhost git version git version 1.7.1 客戶端 安裝完之後,可以使用 git bash 作為命令...