Change User location(home variable) in Egit (Eclipse)(在 Egit (Eclipse) 中更改用户位置(home 变量))
问题描述
我使用 Eclipse Indigo 和 Windows 7 以及用于 Eclipse 的插件 egit/jgit.
I use Eclipse Indigo and Windows 7 and plugin egit/jgit for Eclipse.
如何在 egit 中更改用户位置?我应该这样做,因为它包含不理解 egit 的特殊字符.我想要C:githome.gitconfig"而不是C:UsersКирилл.gitconfig".我该怎么做?当我按下打开"时,什么也没有发生.
How to change user location in egit? I should do it, because it contains special characters, which doesn't understand egit. I want "C:githome.gitconfig" instead "C:UsersКирилл.gitconfig". How can I do it? When I press "Open" nothing happens.
在下一个选项卡存储库设置"中,我也没有更改任何内容.
And in the next Tab "Repository setting" I don't change anything too.
推荐答案
需要添加一个环境变量:这就是我在 Windows 7 上的做法
You need to add an environment variable: This is how i did it on windows 7
- 点击开始按钮.
- Click start button.
- 右键点击计算机"
- 点击属性"
- 点击高级系统设置"
- 高级"标签中的环境变量".
- 单击新建"按钮在用户变量窗格下创建一个新变量.
- 在名称字段中输入HOME"
- 在值字段中输入%USERPROFILE%"或其他路径.(HOME 应该指向您的主目录,例如 C:UsersTom.确保大小写正确!例如 C:users 而不是 C:Users 可能会导致问题!)
- 单击确定",然后再次单击确定".您刚刚在 Windows 上添加了主目录.
这篇关于在 Egit (Eclipse) 中更改用户位置(home 变量)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Egit (Eclipse) 中更改用户位置(home 变量)
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01