Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Duvida Git Github dubious ownership

Estou seguindo os passos do curso, mas para mim apresenta essas informações para qualquer comando executado " PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git commit -m "projeto inicial" fatal: detected dubious ownership in repository at 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO' 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO' is on a file system that does not record ownership To add an exception for this directory, call:

    git config --global --add safe.directory 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO'

PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git confing -- global user.email "sergio.a.mariano@gmail.com" git: 'confing' is not a git command. See 'git --help'.

The most similar command is config PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git config -- global user.email "sergio.a.mariano@gmail.com" fatal: not in a git directory PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git config -- global user.email "sergio.a.mariano@gmail.com" fatal: not in a git directory PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git config -- global user.email "sergio.a.mariano@gmail.com" fatal: not in a git directory PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git config -- global user.name "Sergio Mariano" fatal: not in a git directory PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO>

  • History restored

PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> git remote -v fatal: detected dubious ownership in repository at 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO' 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO' is on a file system that does not record ownership To add an exception for this directory, call:

    git config --global --add safe.directory 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO'

PS D:\HD CPU\UNIVESP\ALURA\NUMERO SECRETO> " Oque poderia ser? no inicio de tudo realizei os comando no VS cod tela inicial e ao dar o comando"git add . " vi que estava dando vários warning em arquivos do hd uma lisa de arquivos que não parava então fechei o VS code e em Open folder abri a pasta do número secreto apartir dai só mostra propriedade duvidosa.

2 respostas
solução!

Olá, Sergio! Parece que você está tendo alguns problemas com o Git, não é mesmo? Vamos tentar resolver isso juntos.

Primeiramente, o erro "fatal: detected dubious ownership in repository" geralmente ocorre quando o Git detecta que o diretório do repositório está em um sistema de arquivos que não registra a propriedade dos arquivos. Isso pode acontecer em sistemas de arquivos FAT32 ou em algumas configurações de rede.

O Git sugere adicionar uma exceção para o diretório em questão com o comando:

git config --global --add safe.directory 'D:/HD CPU/UNIVESP/ALURA/NUMERO SECRETO'

Tente executar este comando e veja se o problema persiste.

Em segundo lugar, parece que você cometeu um pequeno erro de digitação ao tentar configurar seu email. Você digitou "git confing", mas o comando correto é "git config". Além disso, não deve haver espaço entre os dois hífens e a palavra "global". O comando correto seria:

git config --global user.email "sergio.a.mariano@gmail.com"

E o mesmo vale para o comando de configuração do nome de usuário:

git config --global user.name "Sergio Mariano"

Por fim, o erro "fatal: not in a git directory" indica que você está tentando executar comandos do Git fora de um repositório Git. Certifique-se de que você está no diretório correto (o diretório que contém o repositório Git) antes de executar os comandos.

Espero ter ajudado e bons estudos!

Obrigado Renan ajudou. Como não estava conseguindo fazer os procedimentos no HD externo, passei a pasta na hd raiz C: e deu certo.