- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在系统范围的配置中有该文件(但它也可以包含在 git config include.path="/path/to/defaultconfig"
我想重置一些以前设置的值.
特别是,默认配置文件包含 diff.external = git-diff-wrapper
,我想为某些用户停用它
最佳答案
如果它是系统范围的配置,则每个用户都可以覆盖他/她的全局和本地设置中的配置值。
但是没有简单的方法来“停用”较低配置文件中的设置。
即使将其设置为 ""
通常也会产生意想不到的后果。那very topic was discussed in April 2010 .
例如,停用send-email
选项:
True, after thinking a bit about this using no value to unset is a horrible, horrible hack.
git-send-email
should be corrected to not only check that there is value from config or command line option, but also that it is sane (i.e. non-empty, or simply true-ish if we say thatsmtpuser = "0"
is not something we need to worry about supporting).
对于任何设置都是如此:diff.c#run_diff_cmd()
如果it has detected,函数将尝试运行外部差异和 diff.external
值(甚至 ""
)。
if (!strcmp(var, "diff.external"))
return git_config_string(&external_diff_cmd_cfg, var, value);
导致:
if (pgm) {
run_external_diff(pgm, name, other, one, two, xfrm_msg,
complete_rewrite);
return;
}
所以没有简单的方法来阻止外部系统范围的差异,除非确保这些用户引用不同的 git 系统安装路径(意味着不同的系统设置)。
关于git - 覆盖 .gitconfig 用户文件中的 git config --system ( git config --global ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17568274/
我将我的项目托管在 TFS-GIT 服务器中。我在 TFS 上遇到 pull 请求 merge 问题。一种选择是更新 TFS 服务器本身上的 git 配置以“merge --no--ff”,因为时间紧
一定时间后git报错以识别自己,将gitconfig文件设置为 [user] name = = email = = 最佳答案 原来是 Atom 编辑器重置了我的 git 配置。 Ato
我用 git clone 克隆了一个存储库它依赖于另一个私有(private)仓库。在当前 repo 中,我尝试 go get该依赖项( go get -u ./... )它给我一个错误: fatal
我有我的点文件设置,我确实有一个 .gitconfig。问题出在我的 OSX 机器上,希望助手是 osxkeychain,但对于我的 linux 机器,我想要 cache --timeout 3600
我正在尝试设置我的 git 配置,以便我可以使用工作环境和个人环境。 这是我的 ~.gitconfig 文件的内容(碰巧 work 和 private 在 github 上): [url "git@
我编辑了我的 .gitconfig 文件以添加对 LabView 的支持,看起来我做了一些 Git 不完全喜欢的事情。问题是它 (Git) 没有告诉我它不喜欢什么。我做错了什么? 错误消息也没有太大帮
如果我添加 [format] pretty = format:%h %ad %s 到我的 ~/.gitconfig 并输入 git log 我得到: 36f6ac2 2016-05-22 08:5
我在我的 .gitconfig 中定义了以下别名: [alias] teamcity = ! tc tc 是我在 .bashrc 文件中定义的 shell 函数。出于某种原因,我收到以下错误:
我们公司使用了许多定制的开源项目。每当我贡献上游分支时,我都会更改为使用我的个人电子邮件/姓名。有没有办法让每个分支都有 gitconfig? 比如我想要的是 [remote 'gerrit'] na
我想使用全局 gitconfig 文件设置我的 git (TortoiseGIT),这样当我克隆存储库时默认的远程名称不是“origin”,而是我定义的一些其他文本(例如“foo”)。 这可能吗?有哪
Git 似乎忽略了 ~/.gitconfig $ git config --global core.filemode false $ git config -l core.filemode=false
我使用两种不同的 git 电子邮件,一种用于工作,一种用于公共(public)项目。最初我认为我可以在我所有公共(public)存储库所在的文件夹中使用不同的电子邮件创建一个单独的 .gitconfi
我正在编辑我的 ~/.gitconfig 并注意到有混合的制表符/空格。通常混合使用制表符/空格是不好的,但是当我试图查找文档以了解允许的语法要求时,我找不到答案。 ~/.gitconfig 语法是否
在我个人的 Ubuntu 机器中,我有一个目录,其中包含我所有的专业项目。我想为他们使用不同的 git 配置(主要是不同的用户名和电子邮件)。这似乎以前有效,但现在不再有效了。 ~/.gitconfi
我需要一个脚本来确保 .gitconfig 文件中包含以下内容: [url "git@:"] insteadOf = https:/// insteadOf = https:///
我的 .gitconfig 文件中有这个别名: setmeld = config --global diff.external git-meld nomeld = config --globa
我在 Windows 7 下运行这个命令: git status 现在我收到这个错误: fatal: unable to access 'H:\/.config/git/config 我现在与网络断开
基本上我想做的是有一个方便的工具,我可以在其中说: git 打开 这只会在您的浏览器中打开当前的 github 存储库。如果我能得到名称,我可以使用 https://github.com/{user
我有以下.gitconfig: [user] name = name email = email@email.com custom_field = AAA 使用 git config 可以轻松获取姓名
我一直在使用这个别名: aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /' 显示配置文件中的所有别名
我是一名优秀的程序员,十分优秀!