- 23 May, 2017 6 commits
-
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
- 18 May, 2017 1 commit
-
-
Douwe Maan authored
-
- 12 May, 2017 1 commit
-
-
Sean McGivern authored
Handle GL_REPOSITORY env variable and use it in api calls See merge request !130
-
- 11 May, 2017 3 commits
-
-
Alejandro Rodríguez authored
-
Alejandro Rodríguez authored
-
Alejandro Rodríguez authored
-
- 03 May, 2017 2 commits
-
-
Robert Speicher authored
Use a shorter socket path during testing See merge request !131
-
Jacob Vosmaer authored
-
- 25 Apr, 2017 2 commits
-
-
Robert Speicher authored
Use recursive lookup for git repositories in the bin/create-hooks script Closes #82 See merge request !128
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
- 12 Apr, 2017 4 commits
-
-
Rémy Coutable authored
Add hello-world Go executable and gitaly-proto 0.5.0 Closes gitaly#186 See merge request !127
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
-
- 30 Mar, 2017 2 commits
-
-
Rémy Coutable authored
Explain how to release a new version See merge request !126
-
Sean McGivern authored
-
- 29 Mar, 2017 3 commits
-
-
Sean McGivern authored
adds timeout option to push branches and respective test suite See merge request !124
-
Sean McGivern authored
-
Tiago Botelho authored
-
- 28 Mar, 2017 3 commits
-
-
Robert Speicher authored
Fetch repositories with --quiet option by default See merge request !125
-
Douglas Barbosa Alexandre authored
-
Douglas Barbosa Alexandre authored
This will allow us to prevent deadlocks when dealing with extremely long outputs from `git fetch`. All the pipes (stdin, stdout, and stderr) have limited buffers, and when one fills up, everything is going to stop.
-
- 06 Mar, 2017 1 commit
-
-
Rémy Coutable authored
Remove git annex support See merge request !122
-
- 03 Mar, 2017 1 commit
-
-
Pawel Chojnacki authored
-
- 02 Mar, 2017 1 commit
-
-
Pawel Chojnacki authored
-
- 24 Feb, 2017 2 commits
-
-
Pawel Chojnacki authored
-
Pawel Chojnacki authored
-
- 15 Feb, 2017 1 commit
-
-
Robert Speicher authored
Add gitaly notification on post-receive hook See merge request !119
-
- 10 Feb, 2017 1 commit
-
-
Alejandro Rodríguez authored
-
- 07 Feb, 2017 1 commit
-
-
Alejandro Rodríguez authored
-
- 03 Jan, 2017 2 commits
-
-
Douwe Maan authored
Set a 'Host' header on unix sockets Closes #72 See merge request !117
-
Jacob Vosmaer authored
Workaround for a bug in the HTTPUNIX client.
-
- 16 Dec, 2016 3 commits
-
-
Rémy Coutable authored
Pass relevant git environment variables while calling `/allowed` 1. Starting version 2.11, git changed the way the pre-receive flow works. - Previously, the new potential objects would be added to the main repo. If the pre-receive passes, the new objects stay in the repo but are linked up. If the pre-receive fails, the new objects stay orphaned in the repo, and are cleaned up during the next `git gc`. - In 2.11, the new potential objects are added to a temporary "alternate object directory", that git creates for this purpose. If the pre-receive passes, the objects from the alternate object directory are migrated to the main repo. If the pre-receive fails the alternate object directory is simply deleted. 2. In our workflow, the pre-recieve script calls the `/allowed` endpoint on the rails server. This `/allowed` endpoint calls out directly to git to perform various checks. These direct calls to git do _not_ have the necessary environment variables set which allow access to the "alternate object directory" (explained above). Therefore these calls to git are not able to access any of the new potential objects to be added during this push. 3. We fix this by passing the relevant environment variables (`GIT_ALTERNATE_OBJECT_DIRECTORIES`, `GIT_OBJECT_DIRECTORY`, and `GIT_QUARANTINE_PATH`) to the `/allowed` endpoint, which will then include these environment variables while calling out to git. --- - Related to gitlab-org/gitlab-ce#25301. - Corresponding backend MR: gitlab-org/gitlab-ce!7967 - Corresponding EE MR: gitlab-org/gitlab-ee!964 See merge request !112
-
Timothy Andrew authored
-
Timothy Andrew authored
1. Starting version 2.11, git changed the way the pre-receive flow works. - Previously, the new potential objects would be added to the main repo. If the pre-receive passes, the new objects stay in the repo but are linked up. If the pre-receive fails, the new objects stay orphaned in the repo, and are cleaned up during the next `git gc`. - In 2.11, the new potential objects are added to a temporary "alternate object directory", that git creates for this purpose. If the pre-receive passes, the objects from the alternate object directory are migrated to the main repo. If the pre-receive fails the alternate object directory is simply deleted. 2. In our workflow, the pre-recieve script calls the `/allowed` endpoint on the rails server. This `/allowed` endpoint calls out directly to git to perform various checks. These direct calls to git do _not_ have the necessary environment variables set which allow access to the "alternate object directory" (explained above). Therefore these calls to git are not able to access any of the new potential objects to be added during this push. 3. We fix this by passing the relevant environment variables (GIT_ALTERNATE_OBJECT_DIRECTORIES, GIT_OBJECT_DIRECTORY, and GIT_QUARANTINE_PATH) to the `/allowed` endpoint, which will then include these environment variables while calling out to git.
-