+ bbb
- aaa
# ---
# To remove '-' lines, make them ' ' lines (context).
# To remove '+' lines, delete them.
# Lines starting with # will be removed.
#
# If the patch applies cleanly, the edited hunk will immediately be
# marked for staging. If it does not apply cleanly, you will be given
# an opportunity to edit again. If all lines of the hunk are removed,
# then the edit is aborted and the hunk is left unchanged.
Simplemente no entiendo qué significa make them ' ' lines
. ¿Cómo aplicar + bbb
solamente pero no - aaa
?git hunk edit mode - cómo eliminar una línea '-'?
mensaje muy didáctica ... – jacktrades
Para añadir a esto, si va a editar con 'vim' y que desea reemplazar en masa a través de múltiples líneas, por ejemplo, , 7-200, el siguiente comando sería: ': 7,200s/^ -//'. Esta expresión busca un único '-' al comienzo de cada línea dentro del rango especificado y lo reemplaza con un solo espacio. – Adama
Impresionante No tengo idea de qué hacer hasta que vea esta respuesta. Gracias –