Vertaling van "git diff" in Frans
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.
After removing the conflict markers, git diff will look like this.
Après avoir enlevé les marqueurs de conflit, git diff ressemblera à ceci.
Now git diff will be able to tell you what changed in.odt files.
Maintenant, git diff est capable de vous indiquer ce qui a changé dans les fichiers odt.
With this done, git diff should show an output similar to the sample above.
Cela fait, git diff devrait afficher une sortie similaire à l'exemple ci-dessus.
The git diff command is used when you want to see differences between any two trees.
La commande git diff s'utilise lorsque vous voulez voir la différence entre deux arbres.
After testing the code, he reviews his changes by running the git diff command.
Après avoir testé le code, il passe en revue ses changements en exécutant la git diff commande.
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 nous voulons voir le résultat de la fusion modifiée depuis la version distante, nous pouvons lancer git diff - theirs.
We will continue to use the git diff command in various ways throughout the rest of the book.
Nous allons continuer à utiliser la commande git diff de différentes manières par la suite.
This can be confusing, because if you've staged all of your changes, git diff will give you no output.
Cela peut introduire une confusion car si tous les fichiers modifiés ont été indexés, git diff n'indiquera aucun changement.
It also handles file adds, deletes, and renames if they're described in the git diff format, which patch won't do.
Les ajouts, effacements et renommages de fichiers sont aussi gérés s'ils sont décrits dans le format git diff, ce que patch ne supporte pas.
Output of git diff -check.
Sortie de git diff - check.
Although git status answers those questions very generally, git diff shows you the exact lines added and removed - the patch, as it were.
Là où git status répond de manière générale à ces questions, git diff montre les lignes exactes qui ont été ajoutées, modifiées ou effacées - le patch en somme.
When you run git diff directly after a merge conflict, it will give you information in a rather unique diff output format.
Quand vous lancez git diff directement après le conflit de fusion, il vous donne de l'information dans un format de diff plutôt spécial.
You can check out the diff for the staged version using git diff - staged index.html.
Vous pouvez consulter le diff du stage pour ce fichier avec un git diff - staged index.html.