An error occurred fetching the project authors.
  1. 14 Jul, 2017 1 commit
  2. 07 Jul, 2017 1 commit
  3. 23 Jun, 2017 7 commits
  4. 20 Jun, 2017 1 commit
  5. 17 Jun, 2017 1 commit
  6. 16 Jun, 2017 1 commit
  7. 15 Jun, 2017 1 commit
  8. 07 Jun, 2017 1 commit
  9. 05 Jun, 2017 3 commits
  10. 18 May, 2017 1 commit
  11. 10 May, 2017 2 commits
  12. 05 May, 2017 3 commits
  13. 03 May, 2017 1 commit
    • Alejandro Rodríguez's avatar
      Generate and handle a gl_repository param to pass around components · c45341c8
      Alejandro Rodríguez authored
      This new param allows us to share project information between components
      that don't share or don't have access to the same filesystem
      mountpoints, for example between Gitaly and Rails or between Rails and
      Gitlab-Shell hooks. The previous parameters are still supported, but if
      found, gl_repository is prefered. The old parameters should be deprecated
      once all components support the new format.
      c45341c8
  14. 27 Apr, 2017 1 commit
  15. 14 Apr, 2017 2 commits
  16. 10 Apr, 2017 2 commits
  17. 07 Apr, 2017 1 commit
  18. 04 Apr, 2017 1 commit
  19. 29 Mar, 2017 1 commit
  20. 01 Mar, 2017 1 commit
  21. 28 Feb, 2017 1 commit
  22. 08 Jan, 2017 1 commit
    • Vincent Wong's avatar
      Record and show last used date of SSH Keys · b6df93a5
      Vincent Wong authored
      Addresses: Issue #13810
      
      1. Adds a last_used_at attribute to the Key table/model
      2. Update a key's last_used_at whenever it gets used
      3. Display how long ago an ssh key was last used
      b6df93a5
  23. 16 Dec, 2016 2 commits
    • Timothy Andrew's avatar
      Accept environment variables from the `pre-receive` script. · de9c758f
      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 (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.
      de9c758f
    • Timothy Andrew's avatar
      Accept environment variables from the `pre-receive` script. · f82d549d
      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 (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
  24. 17 Nov, 2016 1 commit
  25. 16 Nov, 2016 1 commit
  26. 28 Oct, 2016 1 commit