Questions tagged «git-config»

此命令允许获取和设置存储库或全局选项。

10
git:致命无法自动检测电子邮件地址
我只是无法在Ubuntu 14.04上使用git提交 错误信息是: git:致命无法自动检测电子邮件地址(收到“一些错误的电子邮件”) 我尝试git-config使用和不使用--global选项设置user.name和user.mail,但没有任何效果
105 git-config 

1
如何为git-status输出着色
我想给git-status输出着色,以便: untracked files = magenta new files = green modified files = blue deleted files = red 相反,我看到绿色的暂存文件和蓝色的未暂存文件: 我的.gitconfig是根据一些搜索设置的: [color] status = auto [color "status"] added = green changed = blue untracked = magenta deleted = red

9
我的Git配置中的设置来自哪里?
我注意到core.autocrlf我跑步时有两个清单git config -l $ git config -l core.symlinks=false core.autocrlf=false color.diff=auto color.status=auto color.branch=auto color.interactive=true pack.packsizelimit=2g help.format=html http.sslcainfo=/bin/curl-ca-bundle.crt sendemail.smtpserver=/bin/msmtp.exe diff.astextplain.textconv=astextplain rebase.autosquash=true user.name=name user.email=email@example.com core.autocrlf=true 最后三个(从user.name向下)是我中仅有的三个 C:\users\username\.gitconfig文件中。其他所有的都从哪里来?为什么core.autocrlf列出两次? 这是与MSysGit 1.8.3一起使用的,并且我还安装了Sourcetree(Windows 7)。在Sourcetree中,我未选中“允许Sourcetree修改全局Git配置文件”

2
GIT警告:太多文件跳过了不精确的重命名检测
我知道默认的重命名限制是100,可以使用config“ diff.renamelimit config”增加该值 令人担心的是,如果未配置此配置,是否会合并错误,缺少任何代码?我正在尝试合并(git merge)具有巨大变化的2个分支。 有人可以提供更多有关此配置设置的信息吗?

14
无法自动检测电子邮件地址
我是SmartGit的新手。我无法通过我的存储库提交,我收到的消息是: Unable to auto-detect email address (got 'Arreane@Arreane-PC.(none)') *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository 我使用的是另一台PC,但是如果我在家中提交,则提交和推送操作完美,我不知道这是否是问题的原因。 我到处搜索,其他人说要编辑该.git/config文件,但找不到该文件。 我想念什么?

4
将参数传递给Git别名命令
我可以将参数传递给Git命令的别名吗? 我在Git配置中有一些别名,如下所示: rb1 = rebase -i HEAD~1 rb2 = rebase -i HEAD~2 rb3 = rebase -i HEAD~3 rb4 = rebase -i HEAD~4 .... 是否可以使rb别名git rb <x>适用于任何别名<x>? 我试过这个别名: rb = rebase -i HEAD~ 但是例如git rb 8无法正常工作。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.