Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ccca3970
Commit
ccca3970
authored
Jan 15, 2020
by
Fabio Pitino
Committed by
Marcel Amirault
Jan 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc: how to use a locally modified Gitaly client
* document how to install a custom gem for client changes
parent
910004e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
doc/development/gitaly.md
doc/development/gitaly.md
+15
-0
No files found.
doc/development/gitaly.md
View file @
ccca3970
...
...
@@ -207,6 +207,21 @@ To use a custom Gitaly repository in CI, for instance if you want your
GitLab fork to always use your own Gitaly fork, set
`GITALY_REPO_URL`
as a
[
CI environment variable
](
../ci/variables/README.md#gitlab-cicd-environment-variables
)
.
### Use a locally modified version of Gitaly RPC client
If you are making changes to the RPC client, such as adding a new endpoint or adding a new
parameter to an existing endpoint, follow the guide for
[
Gitaly proto
](
https://gitlab.com/gitlab-org/gitaly/blob/master/proto/README.md
)
. After pushing
the branch with the changes (
`new-feature-branch`
, for example):
1.
Change the
`gitaly`
line in the Rails'
`Gemfile`
to:
```
ruby
gem
'gitaly'
,
git:
'https://gitlab.com/gitlab-org/gitaly.git'
,
branch:
'new-feature-branch'
```
1.
Run
`bundle install`
to use the modified RPC client.
---
[
Return to Development documentation
](
README.md
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment