Vertaling van "git diff" in Spaans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
The annotations can be displayed with git diff.
Las anotaciones pueden ser vistas con git diff.
Run git diff > to create a patch.
Ejecuta git diff > para crear un parche.
After removing the conflict markers, git diff will look like this.
Después de la eliminación de las marcas de conflicto, git diff se verá así.
But let's have a little bit of fun with this git diff command.
Pero juguemos un poco con el comando git diff.
So this is because when you type git diff by itself,
Esto se debe a que cuando escribes git diff por sí solo,
If you run git diff -u with such mixed changes, you can see the mess for yourself.
Si ejecuta git diff -u con tales cambios, podrá ver el desastre usted mismo.
We will continue to use the git diff command in various ways throughout the rest of the book.
A lo largo del libro, continuaremos usando el comando git diff de distintas maneras.
This can be confusing, because if you've staged all of your changes, git diff will give you no output.
Esto puede ser confuso porque si preparas todos tus cambios, git diff no te devolverá ninguna salida.
So when you type git diff simply by itself,
Cuando escribes git diff por sí solo,
and then we type git diff again,
y luego escribimos git diff de nuevo,
And if you type git diff and then add the options staged or cashed,
Si escribes git diff seguido de las opciones staged o cashed,
It also handles file adds, deletes, and renames if they're described in the git diff format, which patch won't do.
También puede manejar archivos nuevos, borrados y renombrados si están descritos en formato git diff, mientras que patch no puede hacerlo.
If we want to see how the result of the merge differed from what was on their side, you can run git diff - theirs.
Si queremos ver cómo el resultado de la fusión difiere de lo que estaba del otro lado, puedes correr git diff - theirs.