当前位置: 首页 > 工具软件 > Git sym > 使用案例 >

git

陆正德
2023-12-01
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 有则是全局,无则是当前项目
// -> 

 

 类似资料: