1
resposta

Erro no git remote

Estava seguindo os seguintes comandos no terminal:

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub/matheus (master) $ cd ..

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub $ mkdir servidor

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub $ cd servidor

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub/servidor $ git init --bare Initialized empty Git repository in C:/Users/M167153/Documents/Git e GitHub/serv idor/

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub/servidor (BARE:master) $ cd ../matheus/

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub/matheus (master) $ git status On branch master nothing to commit, working tree clean

M167153@SA0099259 MINGW64 ~/Documents/Git e GitHub/matheus (master) $ git remote add local C:User/M167153/Documents/Git e GitHub/servidor/

usage: git remote add []

-f, --fetch           fetch the remote branches
--tags                import all tags and associated objects when fetching
                      or do not fetch any tag at all (--no-tags)
-t, --track <branch>  branch(es) to track
-m, --master <branch>
                      master branch
--mirror[=(push|fetch)]
                      set up remote as a mirror to push to or fetch from

Esta dando esse erro ao adicionar o git remote local e não sei como resolver, segui certinho o que está na aula.

1 resposta

Oi, Mateus

Coloque o caminho entre aspas, pois existe espaço

 git remote add local "C:User/M167153/Documents/Git e GitHub/servidor/"