1
resposta

[Bug] Erro push

aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote add local /home/aes/Documentos/Projetos/ aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote local aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote -v local /home/aes/Documentos/Projetos/ (fetch) local /home/aes/Documentos/Projetos/ (push) aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote local aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master Everything up-to-date aes@aes-Inspiron-3501:~/Documentos/Projetos$ git status No ramo master Arquivos não monitorados: (utilize "git add ..." para incluir o que será submetido) como usar o git/criandorepositoriolocal.txt

nada adicionado ao envio mas arquivos não registrados estão presentes (use "git add" to registrar) aes@aes-Inspiron-3501:/Documentos/Projetos$ ^C aes@aes-Inspiron-3501:/Documentos/Projetos$ git add . aes@aes-Inspiron-3501:~/Documentos/Projetos$ git status No ramo master Mudanças a serem submetidas: (use "git restore --staged ..." to unstage) new file: como usar o git/criandorepositoriolocal.txt

aes@aes-Inspiron-3501:/Documentos/Projetos$ git commit -m "arquivo de instrução para criar repositorio local" [master 3faf65b] arquivo de instrução para criar repositorio local 1 file changed, 109 insertions(+) create mode 100644 como usar o git/criandorepositoriolocal.txt aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote local aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote -v local /home/aes/Documentos/Projetos/ (fetch) local /home/aes/Documentos/Projetos/ (push) aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master Everything up-to-date aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master ^C aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master C:/home/aes/Documentos/Projetos/ fatal: invalid refspec 'C:/home/aes/Documentos/Projetos/' aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master C/home/aes/Documentos/Projetos/ fatal: invalid refspec 'C/home/aes/Documentos/Projetos/' aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master /home/aes/Documentos/Projetos/ fatal: invalid refspec '/home/aes/Documentos/Projetos/' aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master /home/aes/Documentos/Projetos/ fatal: invalid refspec '/home/aes/Documentos/Projetos/' aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote set-url local /home/aes/Documentos/Projetos/ aes@aes-Inspiron-3501:/Documentos/Projetos$ git remote local aes@aes-Inspiron-3501:/Documentos/Projetos$ git push local master /home/aes/Documentos/Projetos/ fatal: invalid refspec '/home/aes/Documentos/Projetos/' aes@aes-Inspiron-3501:~/Documentos/Projetos$

1 resposta

Você pode detalhar o que está acontecendo? Mas pelo erros aí parece que você não adicionou os arquivos para serem commitados.

git add .

Depois é commitar:

git commit -m "Atualização"

E fazer o push:

git push local master