git init
git clone [url]
git config --local --list
// -> core.repositoryformatversion=0
// -> core.filemode=false
// -> core.bare=false
// -> core.logallrefupdates=true
// -> core.symlinks=false
// -> core.ignorecase=true
git config user.name
// -> yourname
git congfig user.email
// -> yourmail
git config --global user.name newname // --global 有则是全局,无则是当前项目
// ->