ver tag repositorio origin modificados example eliminar crear archivos git terminal

tag - ¿Cómo salir de una lista de estado de git en terminal?



git tag (11)

¡Crt + c funciona para Windows! usuario1852392

Soy nuevo en Git y Terminal. ¿Cómo puedo salir de un modo de listado generado por el comando git status?


Antes de presionar los comandos de salida (q, etc.) verifique el idioma de entrada actual: si no es así, los comandos en inglés pueden no funcionar.


En primer lugar, necesita configurar las preferencias de final de línea en el terminal

git config --global core.autocrlf input git config --global core.safecrlf true

Entonces puedes usar :q


Escriba ''q'' y hará el trabajo.

Siempre que esté en la terminal y tenga una situación similar, tenga en cuenta también que intente y escriba ''salir'', ''salir'', así como la combinación de teclas abortar ''Ctrl + C''.


Mi combo preferido es Gq , que imprime todas las diferencias y luego sale.

Puede escribir h para mostrar los comandos de ayuda para interactuar con menos, lo que imprime esto en la consola:

SUMMARY OF LESS COMMANDS Commands marked with * may be preceded by a number, N. Notes in parentheses indicate the behavior if N is given. h H Display this help. q :q Q :Q ZZ Exit. --------------------------------------------------------------------------- MOVING e ^E j ^N CR * Forward one line (or N lines). y ^Y k ^K ^P * Backward one line (or N lines). f ^F ^V SPACE * Forward one window (or N lines). b ^B ESC-v * Backward one window (or N lines). z * Forward one window (and set window to N). w * Backward one window (and set window to N). ESC-SPACE * Forward one window, but don''t stop at end-of-file. d ^D * Forward one half-window (and set half-window to N). u ^U * Backward one half-window (and set half-window to N). ESC-) RightArrow * Left one half screen width (or N positions). ESC-( LeftArrow * Right one half screen width (or N positions). F Forward forever; like "tail -f". r ^R ^L Repaint screen. R Repaint screen, discarding buffered input. --------------------------------------------------- Default "window" is the screen height. Default "half-window" is half of the screen height. --------------------------------------------------------------------------- SEARCHING /pattern * Search forward for (N-th) matching line. ?pattern * Search backward for (N-th) matching line. n * Repeat previous search (for N-th occurrence). N * Repeat previous search in reverse direction. ESC-n * Repeat previous search, spanning files. ESC-N * Repeat previous search, reverse dir. & spanning files. ESC-u Undo (toggle) search highlighting. --------------------------------------------------- Search patterns may be modified by one or more of: ^N or ! Search for NON-matching lines. ^E or * Search multiple files (pass thru END OF FILE). ^F or @ Start search at FIRST file (for /) or last file (for ?). ^K Highlight matches, but don''t move (KEEP position). ^R Don''t use REGULAR EXPRESSIONS. --------------------------------------------------------------------------- JUMPING g < ESC-< * Go to first line in file (or line N). G > ESC-> * Go to last line in file (or line N). p % * Go to beginning of file (or N percent into file). t * Go to the (N-th) next tag. T * Go to the (N-th) previous tag. { ( [ * Find close bracket } ) ]. } ) ] * Find open bracket { ( [. ESC-^F <c1> <c2> * Find close bracket <c2>. ESC-^B <c1> <c2> * Find open bracket <c1> ---------------------------------------------------


Puede deshabilitar el buscapersonas para los comandos que no reconocen el indicador --no-pager .

git config --global pager.<command> false

Desactivo los alias de registro y configuro la cantidad específica para devolver.

git config --global pager.log false


Si estás en el bash de git intenta usar exit;

Intenté usar q o ctrl + q pero no funcionaron en bash.


para ventanas :

Ctrl + q y c para salir de la situación de ejecución.


exit hizo por mí. Mis resultados después de pulsar retorno;

my-mac:Car Game mymac$ exit logout Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. [Process completed]


Tengo que adivinar aquí, pero git probablemente está ejecutando su salida en su programa $ PAGER, probablemente less o more . En cualquier caso, tecleando q deberías sacarte.


:q

eso es un comando less , en realidad Utiliza los mismos comandos que vi .