-
Notifications
You must be signed in to change notification settings - Fork 24
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
book/B-embedding-git/sections/libgit2.asc #118
Conversation
`git_object` is actually a ``parent'' type for several different kinds of objects; the memory layout for each of the ``child'' types is the same as for `git_object`, so you can safely cast to the right one. | ||
In this case, `git_object_type(commit)` would return `GIT_OBJ_COMMIT`, so it's safe to cast to a `git_commit` pointer. | ||
Другий шматок коду використовує синтаксис rev-parse (докладніше в <<_branch_references>>), щоб отримати коміт, на який врешті-решт вказує HEAD. | ||
Результуючий тип -- вказівник на `git_object`, який відповідає чомусь, що існує в база даних обʼєків Git в репозиторії. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
в базІ даних
-------^
Це виправив. |
One example is pluggability: Libgit2 allows you to provide custom ``backends'' for several types of operation, so you can store things in a different way than stock Git does. | ||
Libgit2 allows custom backends for configuration, ref storage, and the object database, among other things. | ||
Libgit2 має декілька можливостей, які є поза межами ядра Git. | ||
Одним прикладом є можливість використання додатків: Libgit2 дозволяє вам надавати власні обробники (backend) для декількох типів операцій, щоб ви могли зберігати речі у інший спосіб, ніж типовий Git. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
речі В інший
<2> Initialize a custom ODB backend. | ||
<3> Add the backend to the frontend. | ||
<4> Open a repository, and set it to use our ODB to look up objects. | ||
<1> Ініціалізація порожньої бази даних обʼєктів (ODB - object database), клієнтської частини, яка буде діяти як контейнер для обробників, які у свою чергу виконуватимуть справжню роботу. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ініціалізація --> Ініціалізуйте
здається тут і далі наказовий спосіб.
Є :) |
fix #62