Error de compilación de la fuente de github

0

Estoy tratando de instalar / compilar qstardict para mi openSUSE. Siguiendo las instrucciones:

Antes de construir el libqxtsubmódulo fetch :

git submodule init && git submodule update

Para construir e instalar:

  1. qmake [switches]
  2. make
  3. make install

Pero cuando lo hago git submodule init, aparece el error:

fatal: Not a git repository (or any parent up to mount point /home)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Alex
fuente

Respuestas:

0

¿Inició un repositorio Git local, en el que se supone que se debe agregar este control remoto?

¿Su directorio local tiene una carpeta .git?

Primero elimine el antiguo directorio .git: rm -rf .git

Luego inicialice el repositorio git nuevamente: git init.

Paresh Chauhan
fuente