¿Usted intentó
git branch -D -- --track
? la "--
" es por lo general la convención de "lo que sigue no es una opción, cualquiera que sea su nombre"
De "The Art of Unix Programming", sección "Command-Line Options":
It is also conventional to recognize a double hyphen as a signal to stop option interpretation and treat all following arguments literally.
Usted encontrará que la convención en otros (no es necesario Unix relacionada) CLI (Command Line Interface) como cleartool:
If a nonoption argument begins with a hyphen (–
) character, you may need to precede it with a double-hyphen argument, to prevent it from being interpreted as an option:
cleartool rmtype -lbtype -- -temporary_label-
El P18 (un preprocesador de archivos rápida y flexible con capacidad de procesamiento de macro y un apoyo especial para la internacionalización) menciona que también, y da una buena descripción de la idea general detrás de esa convención:
All option arguments passed to the commands start with a single hyphen.
All option arguments (if any) must precede all non-option arguments.
The end of the option arguments may be signaled using a double hyphen, this is useful if a non-option argument starts with a hyphen. Terminating the list of option arguments with a double hyphen works for all commands, even those that don't take any option arguments.
La herramienta OptionParser escrito en rubí también pone a cabo con toda claridad: *
análisis de las opciones de terminación
It is convention that a double hyphen is a signal to stop option interpretation and to read the remaining statements on the command line literally. So, a command such as:
app -- -x -y -z
will not ‘see’ the three mode-flags. Instead, they will be treated as arguments to the application:
#args = ["-x", "-y", "-z"]
Nota: a veces, se necesitan tres guiones y no dos, especialmente cuando la CLI sigue estrictamente las Opciones de GNU estilos:
The Gnu style command line options provide support for option words (or keywords), yet still maintain compatibility with the Unix style options.
The options in this style are sometimes referred to as long_options
and the Unix style options as short_options
.
The compatibility is maintained by preceding the long_options with two dashes
Similar to the Unix style double-hyphen ’ --
’, the Gnu style has a triple-hyphen ’ ---
’ to signal that option parsing be halted and to treat the remaining text as arguments (that is, read literally from the command line)
Así que ... si '--
' no es suficiente (debe ser con comandos de Git), intente con '---
'
Me gustaría saber cómo se logró crear esa rama en primer lugar. No parece que hayas hecho "git branch --track". ¿O lo hiciste? –
Aquí está la línea ofensiva, estaba intentando rastrear una rama remota. git branch -b - origen de origen/dev – Felix
Las comillas o barras no funcionan porque su caparazón las interpreta antes, mientras que el problema reside en Git y su análisis de argumentos. – Kos