由于没有执行repo init 操作,直接从.repo中恢复,导致git 没有颜色显示
在 ~/ 目录下
新建或者修改一个 文件gedit .gitconfig
将下列复制进去,就有了默认配置
[color]
ui = auto
[alias]
st = status
ci = commit
br = branch
co = checkout
cvsup = !sh -c \"git stash && git cvsimport -v -k -i && git rebase origin && git stash pop\"
svnup = !sh -c \"git stash && git svn rebase && git stash pop\"
up = !sh -c \"git stash && git pull --rebase && git stash pop\"
logs = log --stat --abbrev-commit --color-words
logo = log --abbrev-commit --pretty=oneline
diffs = diff -p --stat --color-words
shows = show --abbrev-commit
unstage = reset HEAD
参考链接:1