Gitolite - 密钥文件可以有@签名吗
我的 keydir/ 中有一些公钥文件,其中一些文件的命名如下 [email protected]
在我的配置文件中,我将用户指定为 user@host,但是当我尝试推送更改时,我收到此警告
remote:
remote: ***** WARNING *****
remote: the following users (pubkey files in parens) do not appear in the config file:
remote: user([email protected])
任何人都知道为什么会这样是这样吗?
I have a few public key files in my keydir/ some are named like this [email protected]
In my config file I specify the user as user@host, but when I try and push the changes, I get this warning
remote:
remote: ***** WARNING *****
remote: the following users (pubkey files in parens) do not appear in the config file:
remote: user([email protected])
Anyone know why this is the case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,应该不会。由于“@”需要转义。
我通常使用以下方式生成密钥:
...这样我就不会遇到这个问题。
According to my understanding, probably not. Since the '@' needs to be escaped.
I usually generate my keys using the following:
...so that I don't run into this issue.