-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
git-blame: updated Spanish translation #18186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e850b6d
git blame: updated Spanish translation
kant b5fc95c
Fix variable name in git blame example
kant 0d44a41
Change line placeholders in git blame documentation
kant 1f35dac
Fix syntax and formatting in git-blame.md
kant 4e32be8
Merge branch 'main' into kant-patch-3
Managor 05c193b
Update pages.es/common/git-blame.md
kant File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,32 @@ | ||
# git blame | ||
|
||
> Muestra el hash de la confirmación y el último autor de cada línea de un archivo. | ||
> Muestra el hash de la confirmación y el último autor en cada línea de un archivo. | ||
> Más información: <https://git-scm.com/docs/git-blame>. | ||
- Muestra el archivo con el nombre del autor y el hash de la confirmación en cada línea: | ||
- Imprime el archivo con el nombre del autor y el hash del commit en cada línea: | ||
|
||
`git blame {{archivo}}` | ||
`git blame {{ruta/al/archivo}}` | ||
|
||
- Muestra el archivo con correo electrónico del autor y hash de la confirmación en cada línea: | ||
- Imprime el archivo con el correo electrónico del autor y el hash de confirmación en cada línea: | ||
|
||
`git blame {{[-e|--show-email]}} {{archivo}}` | ||
`git blame {{[-e|--show-email]}} {{ruta/al/archivo}}` | ||
|
||
- Muestra quien y que modificó de un archivo, a partir de una confirmación específica: | ||
- Imprime el archivo con el nombre del autor y el hash de confirmación en cada línea en una confirmación específica: | ||
|
||
`git blame {{confirmación}} {{ruta/al/archivo}}` | ||
`git blame {{commit}} {{ruta/al/archivo}}` | ||
|
||
- Muestra quien y que modificó de un archivo, a partir de la confirmación anterior a otra: | ||
- Imprime el archivo con el nombre del autor y el hash de confirmación en cada línea antes de una confirmación específica: | ||
|
||
`git blame {{confirmación}}~ {{ruta/al/archivo}}` | ||
`git blame {{commit}}~ {{ruta/al/archivo}}` | ||
|
||
- Salta al origen de una confirmación específica y rastrea un texto específico y 10 de sus líneas siguientes: | ||
|
||
`git blame -L '/{{text}}/',+10 {{a82812aa}}^ tldr.py` | ||
|
||
- Imprime el nombre del autor y la información del hash de confirmación para un rango de líneas específico: | ||
|
||
`git blame -L {{start_line}},{{end_line}} {{ruta/al/archivo}}` | ||
|
||
- Ignora los espacios en blanco y los movimientos de línea: | ||
|
||
`git blame -w -C -C -C {{ruta/a/archivo}}` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.