- 查看配置
git congfig --list
结果:
C:\Users\CXP>git config --list
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
http.sslbackend=openssl
http.sslcainfo=D:/work/Git/mingw64/ssl/certs/ca-bundle.crt
core.autocrlf=true
core.fscache=true
core.symlinks=false
pull.rebase=false
credential.helper=manager-core
credential.https://dev.azure.com.usehttppath=true
init.defaultbranch=master
user.name=Angelou
user.email=******@qq.com
push.default=simple
- 配置邮箱和昵称
–global 参数保证在当前系统任何一个项目默认使用 name 和 email
git config --global user.name "Angelou"
git config --global user.email "******@qq.com"
没有 --global 只能在某个已初始化git的项目下执行,指定这个项目的 name 和 email
git config user.name "Angelou"
git config user.email "******@qq.com"
- 克隆项目
git clone http:www.xxxxx.git
- 克隆XX分支
git clone -b 分支名称 http:www.xxxxx.git
- git存储用户名密码
默认情况在第一次输入用户名密码之后就会存储,下次不需要在输入,如果没有存储,执行以下操作
git config --global credential.helper store
然后再push pull等,不需要输入密码
|