Well, I was able to remove a file with no space xd.txt
but when I created my first file Novo Documento de Texto.txt
it came with space and so the command is not working
What can I do?
Well, I was able to remove a file with no space xd.txt
but when I created my first file Novo Documento de Texto.txt
it came with space and so the command is not working
What can I do?
I just found the solution if someone is in the same doubt,
where you have space vcs should put a \
similar to linux
ex: Novo\ Documento\ de\ Texto.txt
You probably have to enclose it in quotation marks like this: "Novo Documento de Texto.txt"
Assuming you are talking about rm
, it should look like this:
git rm "Novo Documento de Texto.txt"
git commit -m "arquivo removido"