我正在尝试安装/编译qstardict对于我的 openSUSE。按照说明进行操作:
在构建获取libqxt
子模块之前:
git submodule init && git submodule update
构建和安装:
qmake [switches]
make
make install
但是当我这样做时git submodule init
,错误出现了:
fatal: Not a git repository (or any parent up to mount point /home)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
答案1
您是否已初始化本地 Git 存储库,并将该远程存储库添加到其中?
你的本地目录是否有.git 文件夹?
首先删除旧的 .git 目录:rm -rf .git
然后再次初始化 git repo:git init。