What is fetch command on ubuntu?
fetch
não é um comando padrão no Ubuntu.
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.5 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.5 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
$ type time
time is a shell keyword
$ type ls
ls is aliased to 'ls --color=auto'
$ type git
git is /usr/bin/git
$ type fetch
-bash: type: fetch: not found
É provável que as instruções que você está seguindo tenham omitido alguns pré-requisitos não padrão que devem ser instalados primeiro .
I don't get the meaning of the message
-bash: fetch: command not found
O shell de comando, bash, está lhe dizendo que não pode encontrar um comando chamado "fetch" ou está reportando um erro retornado por um comando de busca encontrado.
Esse tipo geral de mensagem de erro pode ocorrer quando o comando não existe ou quando é o nome de um programa que não está no atual $PATH
.