git終端設(shè)置
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 "備注信息"