1. 28 3月, 2018 1 次提交
    • B
      Remove permanent redirects · ce69419a
      Bob Van Landuyt 提交于
      Removes permanent redirects, this means that redirects will only be
      possible as long as the old route isn't taken by a new project/group.
      ce69419a
  2. 25 2月, 2018 1 次提交
  3. 22 2月, 2018 1 次提交
  4. 15 2月, 2018 1 次提交
  5. 07 2月, 2018 2 次提交
  6. 06 2月, 2018 7 次提交
  7. 09 12月, 2017 1 次提交
  8. 08 12月, 2017 1 次提交
  9. 25 10月, 2017 1 次提交
  10. 07 10月, 2017 1 次提交
    • T
      Create idea of read-only database · d1366971
      Toon Claes 提交于
      In GitLab EE, a GitLab instance can be read-only (e.g. when it's a Geo
      secondary node). But in GitLab CE it also might be useful to have the
      "read-only" idea around. So port it back to GitLab CE.
      
      Also having the principle of read-only in GitLab CE would hopefully
      lead to less errors introduced, doing write operations when there
      aren't allowed for read-only calls.
      
      Closes gitlab-org/gitlab-ce#37534.
      d1366971
  11. 28 9月, 2017 1 次提交
  12. 31 8月, 2017 2 次提交
  13. 19 8月, 2017 1 次提交
    • R
      Reduce duplication in GitAccess spec around error messages · 5b37f21b
      Robert Speicher 提交于
      - Adds a new `ProjectMovedError` class to encapsulate that error
        condition. Inherits from `NotFoundError` so existing rescues should
        continue to work.
      - Separating that condition out of `NotFoundError` allowed us to
        simplify the `raise_not_found` helper and avoid repeating the literal
        string.
      - Spec makes use of `ERROR_MESSAGES` hash to avoid repeating literal
        error message strings.
      5b37f21b
  14. 17 6月, 2017 1 次提交
  15. 05 6月, 2017 9 次提交
  16. 10 4月, 2017 1 次提交
  17. 13 3月, 2017 1 次提交
  18. 23 2月, 2017 1 次提交
  19. 20 12月, 2016 2 次提交
  20. 17 12月, 2016 1 次提交
    • T
      Accept environment variables from the `pre-receive` script. · f82d549d
      Timothy Andrew 提交于
      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 (in `gitlab-shell) calls the
         `/allowed` endpoint, which 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 accepting the relevant environment variables
         (GIT_ALTERNATE_OBJECT_DIRECTORIES, GIT_OBJECT_DIRECTORY) on the
         `/allowed` endpoint, and then include these environment variables while
         calling out to git.
      
      4. This commit includes (whitelisted) these environment variables while making
         the "force push" check. A `Gitlab::Git::RevList` module is extracted to
         prevent `ForcePush` from being littered with these checks.
      f82d549d
  21. 10 12月, 2016 2 次提交
  22. 06 12月, 2016 1 次提交