Skip to content
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

Merged
merged 5 commits into from
Mar 27, 2016

Conversation

hedrok
Copy link
Member

@hedrok hedrok commented Dec 11, 2015

fix #62

`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 в репозиторії.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

в базІ даних
-------^

@hedrok
Copy link
Member Author

hedrok commented Mar 27, 2016

Це виправив.

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.
Copy link
Member

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), клієнтської частини, яка буде діяти як контейнер для обробників, які у свою чергу виконуватимуть справжню роботу.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ініціалізація --> Ініціалізуйте
здається тут і далі наказовий спосіб.

@hedrok
Copy link
Member Author

hedrok commented Mar 27, 2016

Є :)

@tbudurovych tbudurovych merged commit 7ca7018 into progit:master Mar 27, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

B-embedding-git/sections/libgit2.asc
2 participants