Files
tldr/pages.uk/common/git-blame.md
burlakvo 4a8fa609e4 git-annotate, git-blame: add Ukrainian translation (#13980)
* git-annotate: add Ukrainian translation

* git-blame: add Ukrainian translation
2024-10-07 16:10:23 -03:00

21 lines
941 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git blame
> Показує хеш коміту та останнього автора на кожному рядку у файлі.
> Більше інформації: <https://git-scm.com/docs/git-blame>.
- Виводить файл з ім'ям автора та хешем коміту на кожному рядку:
`git blame {{шлях/до/файлу}}`
- Виводить електронну пошту автора замість імені:
`git blame {{-e|--show-email}} {{шлях/до/файлу}}`
- Виводить файл з ім'ям автора та хешем коміту на кожному рядку у вказаному коміті:
`git blame {{коміт}} {{шлях/до/файлу}}`
- Виводить файл з ім'ям автора та хешем коміту на кожному рядку до вказаного коміту:
`git blame {{коміт}}~ {{шлях/до/файлу}}`