repo 配置 一般步驟

        • 1、創建 SSH-key 公鑰
        • 2、登錄 gerrit 帳號
        • 3、修改或者創建 .ssh/config 文件
        • 4、配置 config git ~/.gitconfig
        • 5、配置repo 文件
        • 6、嘗試下拉代碼

1、創建 SSH-key 公鑰

命令: ssh-keygen -t rsa -C yourEmailAddress@**.com
一直 enter 鍵按下去

2、登錄 gerrit 帳號

根據提供的 gerrit 網址,登錄gerrit 帳號 密碼

1) 在gerrit 上面添加 公共的 密鑰
依次點擊:
Settings -> SSH Public Keys -> Add Key“`

2) 在電腦上,切換 .ssh 目錄
cd .ssh/
裏面有兩個 id_rsa id_rsa.pub 文件 ,一個 是密鑰,一個是公鑰

cat id_rsa.pub
獲取公鑰內容

將公鑰的內容拷貝到 gerrit add key 上面

點擊 add 添加。

3、修改或者創建 .ssh/config 文件

如果 .ssh 文件夾下面沒有 config 文件,就創建一個
config 文件 裏面的 信息

1)不同的 項目對於這個 config 文件 內容要求不一樣
請參考 具體項目

一般包含:
host
port
user
具體看項目要求,或者拷貝別人參考。

4、配置 config git ~/.gitconfig

1)sudo apt-get install git
2) git config –global user.email “your email”
3) git config –global user.name “your username”
4) 查看 ~/.gitconfig 文件配置的是否正確
5)修改config 權限
sudo chmod 644 config

5、配置repo 文件

1) mkdir ~/bin
2) 拷貝別人電腦 ,或者項目提供的 repo文件到 這個文件下面
3)更改 repo 權限
sudo chmod 777 repo
4) 添加全局變量

$ sudo vi ~/.bashrc
添加新的一行:

export PATH = $PATH:~/bin

source ~/.bashrc

6、嘗試下拉代碼

repo init““
repo sync

你可能感兴趣的:(环境配置)