Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update link to Pro Git's Git internals chapter #3658

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 1 commit into from
Mar 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions examples/general.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
// **libgit2** (for the most part) only implements the core plumbing
// functions, not really the higher level porcelain stuff. For a primer on
// Git Internals that you will need to know to work with Git at this level,
// check out [Chapter 9][pg] of the Pro Git book.
// check out [Chapter 10][pg] of the Pro Git book.
//
// [lg]: http://libgit2.github.com
// [ap]: http://libgit2.github.com/libgit2
// [pg]: http://progit.org/book/ch9-0.html
// [pg]: https://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain

// ### Includes

Expand Down Expand Up @@ -528,4 +528,3 @@ int main (int argc, char** argv)

return 0;
}