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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-24Remove timeouts for long running requestsZeger-Jan van de Weg
2018-07-06Add Repository#set_config and #delete_configJacob Vosmaer
2018-07-05Updated Gitaly timeout valuesAndrew Newdigate
2018-07-03Remove more feature flagsJacob Vosmaer
2018-06-15Migrate repo backup to gitalyAhmad Hassan
2018-06-08RefactorAhmad Hassan
2018-06-07Use RestoreCustomHooks RPC in restore rake taskAhmad Hassan
2018-05-18Migrate RepositoryService#SearchFilesBy{Content,Name}Kim "BKC" Carlbäcker
2018-05-07Raise InvalidRepository error for non-valid git repositoriesDouglas Barbosa Alexandre
2018-05-07Client implementation GetRawChangesZeger-Jan van de Weg
Part of https://gitlab.com/gitlab-org/gitaly/issues/1138
2018-04-30Use fast timeouts for Gitaly FooInProgress RPC'sJacob Vosmaer
2018-04-19Add an API endpoint to download git repository snapshotsNick Thomas
2018-04-11Client implementation for InfoAttributesZeger-Jan van de Weg
Clients can now request the attributes from `$GIT_DIR/info/attributes` through Gitaly. The Gitaly migration is described in gitlab-org/gitaly#1082. The parser algorithm was implemented in a way it could handle both file contents or a File handle, and both were already tested. Other than that, using the boy scout rule, I've removed a class, InfoAttributes, as it was delegating everything to the parser and therefor wasn't really needed in my opinion.
2018-04-06Add calculate_checksum method to the Gitaly repository clientDouglas Barbosa Alexandre
2018-04-06Automatically cleanup stale worktrees and lock files upon a pushStan Hu
git 2.16 will fail badly if there are stale worktrees. Closes #44115
2018-03-06Make --prune a configurable parameter in fetching a git remoteStan Hu
By default, --prune is added to the command-line of a `git fetch` operation, but for repositories with many references this can take a long time to run. We shouldn't need to run --prune the first time we fetch a new repository.
2018-03-01Merge branch 'zj-licensee-key' into 'master'Sean McGivern
Client implementation for Licensee#key See merge request gitlab-org/gitlab-ce!17449
2018-03-01Client implementation for Licensee#keyZeger-Jan van de Weg
Part of the migration as tracked in: gitlab-org/gitaly#1026
2018-03-01Encode revision for gitattributes refZeger-Jan van de Weg
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
2018-02-21Incorporate Gitaly's RepositoryService.IsSquashInProgress RPCAlejandro Rodríguez
2018-01-31Migrate Gitlab::Git::Repository#write_config to GitalyKim "BKC" Carlbäcker
- Add tests for Repository#write_config
2018-01-30Migrate Git::Repository#write_ref to GitalyKim "BKC" Carlbäcker
2018-01-24Migrate restoring repo from bundle to GitalyAhmad Sherif
Closes gitaly#946
2018-01-24Migrate repository bundling to GitalyAhmad Sherif
Closes gitaly#929
2018-01-15Migrate importing repository to GitalyAhmad Sherif
Closes gitaly#907
2018-01-10Migrate rebase_in_progress? to GitalyAhmad Sherif
Closes gitaly#866
2018-01-06Pass timeout to RepositoryService.FetchRemote Gitaly RPC callsAlejandro Rodríguez
2018-01-03Merge branch 'migrate-fork-repo-to-gitaly' into 'master'Robert Speicher
Migrate repo forking to Gitaly Closes gitaly#825 See merge request gitlab-org/gitlab-ce!16018
2018-01-02Migrate repo forking to GitalyAhmad Sherif
Closes gitaly#825
2017-12-28Move encoding methods to the more general EncodingHelperAlejandro Rodríguez
2017-12-13Migrate Gitlab::Git::Repository#merge_base_commit to GitalyAhmad Sherif
Closes gitaly#808
2017-12-08Migrate Git::Repository#fsck to GitalyKim Carlbäcker
2017-11-29Add timeouts for Gitaly callsAndrew Newdigate
2017-11-22Add FetchSourceBranch Gitaly callJacob Vosmaer (GitLab)
2017-10-10Use Gitaly's RepositoryService.HasLocalBranches RPCAlejandro Rodríguez
2017-09-29Create repositories via GitalyJacob Vosmaer
2017-08-30Migrate Repository.FetchRemote to GitalyKim "BKC" Carlbäcker
- `Gitlab::Shell.fetch_remote` now takes a `Gitlab::Git::Repository` instead
2017-08-17Incorporate RepositoryService.ApplyGitattributes Gitaly RPCAlejandro Rodríguez
2017-08-09Rename RPC 'Exists' to 'RepositoryExists'Jacob Vosmaer
2017-08-07Migrate Gitlab::Git::Repository#size to GitalyAhmad Sherif
Closes gitaly#437
2017-07-28Migrate GitGarbageCollectWorker to GitalyKim "BKC" Carlbäcker
2017-07-26Implement GRPC call to RepositoryServiceZ.J. van de Weg