1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| git config --global --edit
git config --global init.defaultBranch main git config --global user.email "fl_6145@163.com" git config --global user.name "fulsun"
git config --global credential.helper store git config --global color.ui auto git config --global core.editor vim
git config --global core.ignorecase false
git config --global core.autocrlf true
git config --global core.safecrlf true
git config --globa core.filemode false
git config --global core.quotepath false
git config --global http.postBuffer 524288000
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8 git config --global gui.encoding utf-8 git config --global init.defaultBranch main
git config --global push.default simple git config --global safe.directory "*" git config --global http.sslverify false git config --global protocol.file.allow always
|