1. 下载smartgit
https://www.syntevo.com/smartgit/download/
解压:tar zxvf 压缩包名
2. 运行
dpkg -S smartgit 查找smartgit文件位置 我的是在家目录(~)下
cd ~/smartgit/bin 进入bin目录
sudo ./add-menuitem.sh 将smartgit添加到应用程序里
sudo ./smartgit.sh 启动smartgit
3. 配置smartgit
cd AndroidTouch 进入自己的项目目录下
git config user.name 'dongjinhua' 配置git用户名
git config user.email 'xxx@qq.com' 配置注册git时的邮箱
在配置以上两步前需要先注册git账号
ssh-keygen -t rsa -C 'xxx@qq.com' 生成秘钥 在接下来的询问中按y 然后一直enter
产生/home/xxx/.ssh/id_rsa和 /home/xxx/.ssh/id_rsa.pub,这两个文件夹下就有key
未完待续