当我尝试选择存储库时,应用程序崩溃了。这可能是 bug
https://bugs.launchpad.net/ubuntu/+source/java-common/+bug/1241101
答案1
问题出在 ubuntu 13.10 的 gtk 库上。ubuntu 有全局菜单,但 GTk 无法将其用作菜单选项。因此,正如 @bogdan 所说,要么使用命令
UBUNTU_MENUPROXY= ./smartgit.sh
或者在您最喜欢的文本编辑器中打开 smartgit.sh / smartgithg.sh 并在文件中的注释后添加下面的行,
UBUNTU_MENUPROXY=0
也就是说它应该看起来像
#!/bin/bash
#
# Normally, editing this script should not be required.
#
# To specify an alternative Java Runtime Environment, set the environment variable SMARTGITHG_JAVA_HOME
UBUNTU_MENUPROXY=0
if [ ......
答案2
该错误报告的第一条评论确实提供了一种解决方法,对我来说很有效。只需像这样启动 SmartGit:
UBUNTU_MENUPROXY= ./smartgit.sh
它可以用作临时解决方案,直到错误被修复。