Change User location(home variable) in Egit (Eclipse)

冷暖自知 提交于 2019-12-09 09:25:25

问题


I use Eclipse Indigo and Windows 7 and plugin egit/jgit for Eclipse.

How to change user location in egit? I should do it, because it contains special characters, which doesn't understand egit. I want "C:\git\home\.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.


回答1:


You need to add an environment variable: This is how i did it on windows 7

  • Click start button.
    1. Right click "Computer"
    2. Click "Properties"
    3. Click "Advanced System Settings"
    4. "Environment variables" in "Advanced" tab.
    5. Click the "New" button to create a new variable under user variables pane.
    6. Enter "HOME" in the name field
    7. Enter "%USERPROFILE%" or some other path in the value field. (HOME should point to your home directory e.g. C:\Users\Tom. Ensure correct case! E.g. C:\users instead of C:\Users may cause problems!)
    8. Click OK, and OK again. You have just added the Home directory on Windows.



回答2:


Git reads the XDG_CONFIG_HOME environment variable to find the users git config (see http://git-scm.com/docs/git-config) but unfortunately JGit doesn't look at it.

I've raised a bug here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=430194

please log in to the Eclipse Bugzilla and vote for it.



来源:https://stackoverflow.com/questions/6989847/change-user-locationhome-variable-in-egit-eclipse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!