git终端设置
git config --global log.date format:'%Y-%m-%d %H:%M:%S'
git config --global credential.helper store
git config --global core.quotepath false
也可以直接修改~/.gitconfig文件
[credential]
helper = store
[user]
email = wtlit@qq.com
name = 王涛哥哥
[i18n]
commitencoding = utf-8
logoutputencoding = utf-8
[log]
date = format:%Y-%m-%d %H:%M:%S
[core]
quotepath = false
autocrlf = input
ssh-keygen:
ssh-keygen -t rsa -C "备注信息"