Copyright © 2022-2024 aizws.net · 网站版本: v1.2.6·内部版本: v1.23.3·
页面加载耗时 0.00 毫秒·物理内存 72.6MB ·虚拟内存 1299.8MB
欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
git config 命令用于查看或者设置 git 仓库的配置信息。
git config [<file-option>] [--type=<type>] [--show-origin] [-z|--null] name [value [value_regex]]
git config 命令的选项比较多,我们着重介绍常用的配置命令。
# 查看全部配置信息 git config --list --global # 或者 git config -l --global
# 查看 user.name 配置信息 git config --global user.name # 查看 user.email 配置信息 git config --global user.email
参数说明:
其中 --global 是作用域参数。还有 --local 和 --system。
--local 只对单个仓库有效。--system 对系统所有登录用户所有的仓库有效【很少用到】。--global 对当前用户所有的仓库有效【经常用到】。
如果不加作用域参数,默认是 --local。
如果 global 和 local 都配置了,那么当前仓库用的是 local 配置。
设置配置项的语法格式:
git config [--local|--global|--system] --unset section.key
范例:设置用户名称和用户邮箱。
git config --global user.name 'your username' git config --global user.email 'your email address'
删除配置项的语法格式:
git config [--local|--global|--system] --unset section.key
范例:删除用户邮箱。
git config --global --unset user.email 'your email address'
git branch 命令:git branch 命令包括:查看分支、新建分支、删除分支命令。1. 查看分支:1)查看本地分支的命令:git branch。2)列出远程分支的命令:git branch -r。3)列出所有本地分支和远程分支:git branch -a。2. 新建分支:1)新建分支的命令:git branch (branchname)。2)新建一个分支,指向指定commit:git branch [branchname] [commit]