赞
踩
1.安装GIT
sudo apt update
sudo apt install git #安装
git --version #查看git版本
2.下载repo工具
mkdir ~/bin #创建文件夹
wget https://storage.googleapis.com/git-repo-downloads/repo -P ~/bin/
或者
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo #两网站都不可用,先不管
3.改变执行权限和设置环境变量
chmod a+x ~/bin/repo #所有用户都可以执行
在~/.bashrc 文件的最末尾添加如下内容:
export PATH=~/bin:$PATH
export REPO_URL=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/ #改变REPO_URL的下载地址
4.repo下载
在根目录执行repo 显示为安装repo
执行提示中的repo init 即可根据步骤3中的地址下载 可使用repo了
服务器添加SSH公钥(添加后才有权限下载)
Linux操作系统配置git的ssh_linux git配置ssh-CSDN博客可参考该文章
5.# 添加全局git用户和邮箱
git config --global user.name "用户名"
git config --global user.email "邮箱"
# 查看用户名和邮箱是否有误
git config --list
ssh-keygen -t rsa -b 4096 -C "邮箱"
生成的公钥在~/.ssh/id_rsa.pub 中将其添加到Settings----->SSH
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。