Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2023-08-30 14:57:17 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-09-05 10:42:54 +0300
commit9a4dd44812c14895d3702b3a5ad38195927e9996 (patch)
treec8a06f6b19722eb4ba0ef6353297ce4a61ad9132 /doc
parent33b125c09fc6852729f4bdf3f27237553bc7825f (diff)
docs: Stop mentioning libgit2
We don't use either Git2go nor libgit2 anymore, so let's stop mentioning it.
Diffstat (limited to 'doc')
-rw-r--r--doc/beginners_guide.md1
-rw-r--r--doc/serverside_git_usage.md3
2 files changed, 1 insertions, 3 deletions
diff --git a/doc/beginners_guide.md b/doc/beginners_guide.md
index 0fbed62ca..4de508911 100644
--- a/doc/beginners_guide.md
+++ b/doc/beginners_guide.md
@@ -75,7 +75,6 @@ To enable linting in your code editor:
1. Run `make lint` at least once. That builds a version of `golangci-lint` for you.
1. Point your code editor or code editor's plugin to the binary at `_build/tools/golangci-lint`.
-1. If necessary, add `_build/deps/libgit2/install/lib/pkgconfig` to your `PKG_CONFIG_PATH` environment variable.
#### Experimenting with editing code
diff --git a/doc/serverside_git_usage.md b/doc/serverside_git_usage.md
index c6d0faa70..823191bc6 100644
--- a/doc/serverside_git_usage.md
+++ b/doc/serverside_git_usage.md
@@ -1,9 +1,8 @@
# Server side Git usage
-Gitaly uses three implementations to read and write to Git repositories:
+Gitaly uses two implementations to read and write to Git repositories:
1. `git(1)` - The same Git used by clients all over the world
-1. [LibGit2](https://github.com/libgit2/libgit2) - a linkable library used through Rugged and Git2Go
1. On ad-hoc basis, part of Git is implemented in this repository if the
implementation is easy and stable. For example the [pktline](../internal/git/pktline) package.