An error occurred fetching the project authors.
- 05 Jun, 2018 2 commits
-
-
Jacob Vosmaer (GitLab) authored
-
Jacob Vosmaer (GitLab) authored
-
- 01 Jun, 2018 1 commit
-
-
Jacob Vosmaer (GitLab) authored
-
- 30 May, 2018 1 commit
-
-
Kim "BKC" Carlbäcker authored
-
- 19 May, 2018 1 commit
-
-
Sergey Sinev authored
Closes #45743
-
- 18 May, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
OPT_OUT status has been removed, and alternative implementation removed. Also checks if the repository exists before executing the checksum RPC to guard against NotFound errors. Closes gitlab-org/gitaly#1105
-
- 17 May, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
-
- 14 May, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
These two endpoints are in opt-out, and no one noticed. Has been running on .com for 4 months now and considered stable. Closes https://gitlab.com/gitlab-org/gitaly/issues/884
-
- 07 May, 2018 2 commits
-
-
Douglas Barbosa Alexandre authored
-
Zeger-Jan van de Weg authored
Part of https://gitlab.com/gitlab-org/gitaly/issues/1138
-
- 30 Apr, 2018 2 commits
-
-
Douwe Maan authored
Serve archive requests with the correct file in all cases (10.7) See merge request gitlab/gitlabhq!2376
-
Douwe Maan authored
Serve archive requests with the correct file in all cases (10.7) See merge request gitlab/gitlabhq!2376
-
- 25 Apr, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Direct disk access is done through Gitaly now, so the legacy path was deprecated. This path was used in Gitlab::Shell however. This required the refactoring in this commit. Added is the removal of direct path access on the project model, as that lookup wasn't needed anymore is most cases. Closes https://gitlab.com/gitlab-org/gitaly/issues/1111
-
- 14 Apr, 2018 2 commits
-
-
Stan Hu authored
-
Stan Hu authored
This is called repeatedly when viewing a merge request, and this should improve performance significantly by avoiding shelling out to git every time. This should help https://gitlab.com/gitlab-com/infrastructure/issues/4027.
-
- 12 Apr, 2018 1 commit
-
-
Rubén Dávila authored
-
- 06 Apr, 2018 3 commits
-
-
Douglas Barbosa Alexandre authored
-
Stan Hu authored
git 2.16 will fail badly if there are stale worktrees. Closes #44115
-
James Ramsay authored
Repository archives are always named `<project>-<ref>-<sha>` even if the ref is a commit. A consequence of always including the sha even for tags is that packaging a release is more difficult because both the ref and sha must be known by the packager. - add `<project>/-/archive/<ref>/<filename>.<format>` route using the `-` separator to prevent namespace collisions. If the filename is `<project>-<ref>` or the ref is a sha, the sha will be omitted, otherwise the default filename will be used. - deprecate previous archive route `repository/<ref>/archive`
-
- 04 Apr, 2018 1 commit
-
-
James Ramsay authored
Repository archives are always named `<project>-<ref>-<sha>` even if the ref is a commit. A consequence of always including the sha even for tags is that packaging a release is more difficult because both the ref and sha must be known by the packager. - add append_sha option (defaults true) to provide a method for toggling this feature. Support added to GitLab Workhorse by gitlab-org/gitlab-workhorse!232
-
- 30 Mar, 2018 1 commit
-
-
Jacob Vosmaer (GitLab) authored
-
- 27 Mar, 2018 1 commit
-
-
Douwe Maan authored
-
- 14 Mar, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Prior to this change, this method was called add_namespace, which broke the CRUD convention and made it harder to grep for what I was looking for. Given the change was a find and replace kind of fix, this was changed without opening an issue and on another feature branch. If more dynamic calls are made to add_namespace, these could've been missed which might lead to incorrect bahaviour. However, going through the commit log it seems thats not the case.
-
- 02 Mar, 2018 1 commit
-
-
Ahmad Sherif authored
-
- 01 Mar, 2018 3 commits
-
-
Zeger-Jan van de Weg authored
Part of the migration as tracked in: gitlab-org/gitaly#1026
-
Tiago Botelho authored
-
Zeger-Jan van de Weg authored
A field didn't call the needed encoding helper, thus some UTF-8 encoding couldn't be encoded to ASCII. Using the helper method this was fixed. Tests are now run against Gitaly and Rugged too, to ensure both remain working correctly. Fixes gitlab-org/gitaly#1032, gitlab-org/gitlab-ce#43278
-
- 26 Feb, 2018 1 commit
-
-
Sean McGivern authored
These are obscuring the real error, which is confusing for everyone.
-
- 21 Feb, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Adds a test where a branch name is also a valid commit id. Git, the binary should create an error message which is difficult to parse and leading to errors later, as seen in: gitlab-org/gitlab-ce#43222 To catch these cases in the future, gitlab-test@1942eed5cc108b19c7405106e81fa96125d0be22 was created. Which a branch name matching the commit
-
- 20 Feb, 2018 1 commit
-
-
Ken authored
26039 - add merge request id 26039 change due to lingust source file updates
-
- 19 Feb, 2018 2 commits
-
-
Sean McGivern authored
We need to ignore the names for renamed files when configuring with sparse checkout.
-
Stan Hu authored
When the applied diff contains UTF-8 or some other encoded data, the diff returned back from the git process may be in ASCII-8BIT format. Writing this data to stdin may fail if the data because stdin expects this data to be in UTF-8. By switching the output to binmode, we ensure that the diff will always be written as-is. Closes gitlab-org/gitlab-ee#4960
-
- 07 Feb, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
The refs hash is used to determine what branches and tags have a commit as head in the network graph. The previous implementation depended on Rugged#references. The problem with this implementation was that it depended on rugged, but also that it iterated over all references and thus loading more data than needed if for example the project uses CI/CD environments, Pipelines, or Merge Requests. Given only refs are checked the network cares about the GraphHelper#refs method has no need to reject those, simplifying the method. Closes gitlab-org/gitaly#880
-
- 02 Feb, 2018 2 commits
-
-
Alejandro Rodríguez authored
-
Ahmad Sherif authored
Gitlab::Git::Repository#find_branch has a similar logic. Fixes #42609
-
- 01 Feb, 2018 1 commit
-
-
Alejandro Rodríguez authored
This was affecting the performance of `Gitlab::Git::Repository#squash`.
-
- 31 Jan, 2018 3 commits
-
-
Takuya Noguchi authored
-
Kim "BKC" Carlbäcker authored
- Add tests for Repository#write_config
-
Jacob Vosmaer authored
-
- 30 Jan, 2018 1 commit
-
-
Ahmad Sherif authored
Closes gitaly#967
-