Git 根据不同目录设置不同账号

Git 根据不同目录设置不同账号

includeIf 配置

shell 复制代码
# 先创建 gitconfig 文件(如果不存在)
touch ~/.gitconfig
touch ~/.gitconfig_pers
touch ~/.gitconfig_work
shell 复制代码
# ~/.gitconfig

[core]
	longpaths = true # 允许处理长路径

# includeIf 的 gitdir 条件只会在实际 Git 仓库中生效,普通的文件目录不会触发条件包含
[includeIf "gitdir:C:/LouisPers/"] # 注意目录结尾不要少了 /,代表是个目录
    path = ~/.gitconfig_pers

[includeIf "gitdir:C:/LouisWork/"] # 注意目录结尾不要少了 /,代表是个目录
    path = ~/.gitconfig_work
shell 复制代码
# ~/.gitconfig_pers

[user]
    name = your_pers_name
    email = your_pers_email@example.com
shell 复制代码
# ~/.gitconfig_work

[user]
    name = your_work_name
    email = your_work_email@company.com
相关推荐
修炼者3 小时前
Android Studio的技巧
android·android studio
雨白3 小时前
ARouter 入门指南:从基本跳转到对象传递
android
用户69371750013844 小时前
17.Kotlin 类:类的形态(四):枚举类 (Enum Class)
android·后端·kotlin
h***34634 小时前
MS SQL Server 实战 排查多列之间的值是否重复
android·前端·后端
用户69371750013844 小时前
16.Kotlin 类:类的形态(三):密封类 (Sealed Class)
android·后端·kotlin
摆烂积极分子6 小时前
安卓开发学习-安卓版本
android·学习
n***26567 小时前
MySQL JSON数据类型全解析(JSON datatype and functions)
android·mysql·json
t***82117 小时前
mysql的主从配置
android·mysql·adb
YF021110 小时前
Frida如何稳定连接PC端跟Android手机端
android·mac·xposed
O***P57111 小时前
【MySQL】MySQL内置函数--日期函数字符串函数数学函数其他相关函数
android·mysql·adb