安装git:
sudo apt-get update
sudo apt-get install git
安装git gui:
sudo apt-get install git-gui
配置git:
git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"
git config --global core.editor nano
git config --global merge.tool vimdiff
注意事项:
安装了git-gui,打开以后出现以下提示:
Spell checking is unavable:
error:No word lists can be found for the language "zh_CN"
原因:打开的时候会进行拼写检查
解决方法:
gedit ~/.gitconfig,然后在文件末尾追加以下内容:
[gui]
spellingdictionary = none
使用方法:
在工程文件夹中输入git gui,回车