git部分命令记录

一、如何让as的git log不乱码,显示中文

1.git config --global i18n.commitencoding utf-8  --注释:该命令表示提交命令的时候使用utf-8编码集提交

2.git config --global i18n.logoutputencoding utf-8 --注释:该命令表示日志输出时使用utf-8编码集显示

3.set LESSCHARSET=utf-8  --注释:设置LESS字符集为utf-8

 

二、如何让git提交代码的时候不用输入账号密码

1.git config credential.helper store

你可能感兴趣的:(git部分命令记录)