标签:关联 基本 com -- span 没有 remote 读取 glob
查看当前全部配置
git config -l
全局级配置,如果没有仓库级别的特殊配置,默认读取这个配置
git config --global user.name "name" git config --global user.email "email"
仓库级配置,一般一个项目配置一次
git config user.name "name" git config user.email "email"
#git初始化 git init #设置remote地址 git remote add origin 地址 git add . git commit -m "注释" git push
标签:关联 基本 com -- span 没有 remote 读取 glob
原文地址:https://www.cnblogs.com/ldy-miss/p/9964780.html