Buenas. Como andan? Durante mi travesía dentro del curso de Git y GitHub me encontré con el siguiente problema: Al momento de introducir este comando: $ git remote add {nombre} {ruta} salta el siguiente mensaje:
$ git remote add -f servidorlocal F:/Programacion html/servidor/
usage: git remote add [<options>] <name> <url>
-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
Y quería comunicar como solucionarlo Después de mucho indagar y revisar llegué a un foro bastante escondido y la solución terminó siendo bastante sencilla. Lo que hay que hacer es introducir el comando con normalidad y luego agregarle un par de comillas (""), de apertura y cierre, ubicadas antes y después de la ruta donde se encuentre su servidor. EJ:
$ git remote add servidorlocal "F:/Programacion html/servidor/"
ayuda: "servidorlocal" es el nombre que le puse a mi servidor remoto Y la ubicación (F:/Programacion html/servidor/) es de mi carpeta donde creé el servidor
Espero que les sirva. Y que lo encuentren en un momento necesario.