- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有不同的电子邮件地址用于工作项目和开源项目,我想确保我为每种类型的项目使用正确的地址。
显然,解决方案是适本地设置存储库特定的配置,不幸的是,我一直忘记设置它,直到我进行了几次提交,所以我使用全局 user.email 配置,如果它与什么匹配就可以了我正在努力,但在其他方面不太好。
如果 user.email 没有在任何地方设置,git 只会将本地用户名和主机拼在一起组成一个(对于台式机来说不是那么好);我希望它只是阻止提交。我不认为 Hook 会起作用,因为我希望这种情况发生在新的和克隆的存储库中 - 如果我手动将 Hook 复制到存储库中,我可能应该改为设置配置。
最佳答案
新更新(2016 年 2 月,针对 git 2.8)
git 2.8(2016 年 3 月)将添加一个新的解决方案:
参见 commit 4d5c295 (2016 年 2 月 6 日)作者:Dan Aloni (da-x
) .
帮助:Eric Sunshine (sunshineco
) .
参见 commit 59f9295 (2016 年 2 月 4 日)作者:Jeff King (peff
) .
帮助:Eric Sunshine (sunshineco
) .
(由 Junio C Hamano -- gitster
-- merge 于 commit c37f9a1 ,2016 年 2 月 17 日)
ident
: adduser.useConfigOnly
boolean for whenident
shouldn't be guessedIt used to be that:
git config --global user.email "(none)"
was a viable way for people to force themselves to set
user.email
in each repository.
This was helpful for people with more than one email address, targeting different email addresses for different clones, as it barred git from creating a commit unless theuser.email
config was set in the per-repo config to the correct email address.A recent change, 19ce497 (
ident
: keep a flag for bogus default_email, 2015-12-10 for git 2.6.5, Jan. 2016), however, declared that an explicitly configureduser.email
is not bogus, no matter what its value is, so this hack no longer works.Provide the same functionality by adding a new configuration variable
user.useConfigOnly
; when this variable is set, the user must explicitly set user.email configuration.
所以从 2016 年 3 月和 git 2.8 开始,做:
git config --global user.useConfigOnly true
您的任何新存储库都将在其本地 .git/config
文件中查找 user.email
。
如果在本地 git 配置中找不到 user.email
,提交将不会继续。
请注意,它将在 git 2.9(2016 年 6 月)中得到更多增强:
参见 commit d3c06c1 , commit 734c778 (2016 年 3 月 30 日)作者:Marios Titas (``) .
(由 Junio C Hamano -- gitster
-- merge 于 commit e7e6826 ,2016 年 4 月 29 日)
ident
: check foruseConfigOnly
before auto-detection of name/emailIf
user.useConfigOnly
is set, it does not make sense to try to auto-detect the name and/or the email.
The auto-detection may even result in a bogus name and trigger an error message.
ident
: give "please tell me" message uponuseConfigOnly
erroruse a less descriptive error message to discourage users from disabling
user.useConfigOnly
configuration variable to work around this error condition. We want to encourage them to set user.name or user.email instead.
所以代替:
user.useConfigOnly set but no name given
user.useConfigOnly set but no mail given
你会看到:
no name was given and auto-detection is disabled
no email was given and auto-detection is disabled
原始答案(2012 年 9 月)
有点像“Stop a git commit by a specific author using pre-commit hook”,你可以定义一个default 预提交钩子(Hook)来检查:
git config --local user.email
是否为空
如果为空:exit 1
要确保您为每个正在创建的存储库使用默认 Hook ,请参阅“change default git hooks”。
这是一种与“Share your git hooks”中描述的方法类似的方法:
关于git - 如果未设置用户电子邮件,如何进行 git block 提交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12292582/
假设我有一个带有隐藏提交按钮的表单,我在其中输入值,然后我点击一个按钮,就会出现带有确认消息和确认按钮的对话框。当我单击“确认”按钮时,我还单击了表单中隐藏的提交按钮。这可能吗?我如何在 JQuery
我们正在学习 Git 并使用 GitHub 作为我们的托管站点。 我们都 fork upstream repo 并 PR 我们的提交到 upstream 以获取我们的更改。 我们正在努力学习如何压缩我
我只需要一些关于这段代码的帮助。 var prv3; var markIt3 = function(e) { if (prv3 === this && this.checked) { th
如果 1 个表单使用“GET”方法而另一个使用“POST”方法,我如何提交位于同一页面上的 2 个表单。每个表单都有相同的操作并转到相同的下一页。需要帮忙。感谢大家的帮助。 我怎样才能得到下面这两个使
您好,我的表单中有以下脚本 function pdf() { var frm = document.getElementById("form1"); frm.action = "http://www.
我有一个 iOS 胖静态库(iphoneos 和 iphonesimulator),如果我在应用程序提交期间使用它,它会因为二进制文件包含 iphonesimulator 代码而失败吗? 最佳答案 我
我似乎有一个卡住的 git repo。它卡在所有基本的添加、提交命令上,git push 返回所有内容为最新的。 从其他帖子我已经完成了 git gc 和 git fsck/ 我认为基本的调试步骤是
我正在尝试发送由 jquery 创建的表单。该表单附加到一个 div 中,下面的变量“data”是使用 php 创建的,我将只发布最重要的 js 代码。 我尝试了很多带有和不带有“on()”的操作,但
我面临一个简单的问题,但不知道如何解决。我正在使用 twitter bootstrap 的标签。选项卡有效,但每个选项卡中的表单不提交。表单在没有选项卡的情况下提交。 以下是我用于标签的链接
我的计算机上有 140 个 git 存储库,每周我可以处理其中 10-15 个。有没有办法知道是否忘记提交/推送我的一个项目? 这些存储库都位于同一位置:“C:/Projects”。 输出类似于 C:
我对 javascript 完全陌生,目前正在开发我的第一个函数。我有这 2 个文本输入区域,可以在其中输入他的姓名和级别。 Nom: Niveau (1 á 6): 提交后,
我安装了最新的 Docker CS,得到了 LAMP image来自 Docker 集线器。我正在尝试在其中创建一个数据库并使用保存在其中的数据库制作一个新图像。 启动容器:docker run --
我有这个 jQuery 简单代码: 由于某种原因,submit() 无法正常工作(我的表单在单击 old_thumb 按钮后未提交。有人可以帮助我吗? 这里是 html 的一部分(它很长
如何获得 input type="submit"onclick 事件来触发 commitfunds.valdiate?我不能使用类或 ID。它必须是一个 onclick 事件。 这是代码: row A
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
来自 this earlier thread我以为我知道可以使用 javascript submit() 命令通过 POST 方法发送表单数据。但我无法让它工作。这个演示在目的方面没有明显的意义,但请
在 mysql 重新启动时提交 XA 待处理事务时,出现以下错误。请帮助我解决这个错误。 mysql> XA RECOVER CONVERT XID; +----------+------------
我有一个带有 的表单. 如果启用了 Javascript,我将删除此 submit -输入字段$('#no-js-submit').remove();并添加“fire-ajax”按钮 $('Fire
我希望在页面加载后提交此表单,并且我使用了以下代码来完成此操作。问题是页面不断重新加载并停留在该循环中。 HTML Select Genre
我们有一个表单,其中有几个单独的提交按钮,它们执行不同的操作。问题是我有几个具有以下 HTML 的按钮: 现在您无法使用标准的 find_control 函数按值定位元素。所以我写了一个谓词函数来
我是一名优秀的程序员,十分优秀!