1. 10 Feb, 2016 5 commits
  2. 09 Feb, 2016 7 commits
  3. 05 Jan, 2016 1 commit
  4. 04 Jan, 2016 2 commits
  5. 14 Dec, 2015 2 commits
  6. 11 Dec, 2015 2 commits
  7. 01 Dec, 2015 1 commit
  8. 26 Nov, 2015 1 commit
  9. 25 Nov, 2015 8 commits
  10. 24 Nov, 2015 1 commit
    • Kirill Smelkov's avatar
      Pass $HOME to git as well · 9e087f64
      Kirill Smelkov authored
      [ this patch has the same rationale and reasoning as
        https://gitlab.com/gitlab-org/gitlab-workhorse/commit/0d0bd209
      
        details follow ]
      
      Git has 3 places for configs:
      
          - system
          - global (per user), and
          - local  (per repository)
      
      System config location is hardcoded at git compile time (to usually
      $prefix/etc/gitconfig). Local configuration is usually picked because we
      pass full repo path to subcommand. But global configuration is currently not
      picked at all, because HOME env variable is not passed to git.
      
      Pass $HOME through and let git see it's "global" config.
      
      Currently GitLab omnibus stores gitlab user name/email  + "autocrlf =
      true" in global config, so missing it should not be a blocker for
      receive/send-pack operations. But having it is more correct and can be
      handy in the future if/when more git operations are done from-under
      gitlab-shell.
      
      Having $HOME properly set is also needed when one cannot change system
      git config and have to put site-wide configuration into global git
      config under $HOME.
      
      That was the case I've hit and the reason for this patch.
      9e087f64
  11. 19 Nov, 2015 1 commit
  12. 18 Nov, 2015 1 commit
  13. 17 Nov, 2015 2 commits
  14. 12 Nov, 2015 3 commits
    • Dmitriy Zaporozhets's avatar
      Revert "Merge branch 'use-load-path' into 'master' · f532377f
      Dmitriy Zaporozhets authored
      This reverts commit ae498b6c, reversing
      changes made to 79fdf65c.
      f532377f
    • Dmitriy Zaporozhets's avatar
      Merge branch 'y/httpunix2' into 'master' · 9f53a532
      Dmitriy Zaporozhets authored
      Add support to connect gitlab-shell to Unicorn via UNIX socket  (v2)
      
      Hello up there.
      
      I'm doing SlapOS port of GitLab, and that means several different services could be running on the same machine, including several GitLabs.
      
      So far all internal GitLab subservices could be glued together via UNIX sockets except gitlab-shell -> Unicorn link, which, when done via local TCP, requires firewall/network namespaces to protect services on one machine from each other.
      
      On the other hand access to UNIX domain sockets is managed via regular UNIX permissions on filesystem, and thus is easier to manage. Besides UNIX domain sockets are well known to be faster compared to TCP over loopback - in particular to have ~ 2 times less latency and ~ 2 times more throughput.
      
      From this point of view it makes sense to teach gitlab-shell to talk to Unicorn via UNIX socket and switch to that mode by default eventually.
      
      I've just made a patch for this. Please apply.
      
      Thanks beforehand,  
      Kirill
      
      /cc @dzaporozhets, @jacobvosmaer, @rspeicher 
      
      See merge request !30
      9f53a532
    • Dmitriy Zaporozhets's avatar
      Merge branch 'use-load-path' into 'master' · ae498b6c
      Dmitriy Zaporozhets authored
      Use load path, set ROOT_PATH via ENV
      
      Uses load path instead of require_relative, adds an environment variable to set gitlab-shell ROOT_PATH variable (Fixes #30)
      
      See merge request !28
      ae498b6c
  15. 11 Nov, 2015 2 commits
  16. 10 Nov, 2015 1 commit