An error occurred fetching the project authors.
  1. 27 Nov, 2015 1 commit
  2. 26 Nov, 2015 2 commits
  3. 25 Nov, 2015 4 commits
  4. 24 Nov, 2015 4 commits
  5. 23 Nov, 2015 1 commit
  6. 19 Nov, 2015 1 commit
  7. 11 Nov, 2015 1 commit
  8. 10 Nov, 2015 2 commits
  9. 09 Nov, 2015 2 commits
    • Stan Hu's avatar
      Upgrade gitlab_git to 7.2.20 and rugged to 0.23.3. · 4017a4fc
      Stan Hu authored
      Switch back to github-linguist
      4017a4fc
    • Yorick Peterse's avatar
      Added Sherlock, a custom profiling tool for GitLab · dec3e4ce
      Yorick Peterse authored
      Sherlock will be a new GitLab specific tool for measuring the
      performance of Rails requests (and SideKiq jobs at some point). Some of
      the things that are currently tracked:
      
      * SQL queries along with their timings, backtraces and query plans
        (using "EXPLAIN ANALYZE" for PostgreSQL and regular "EXPLAIN" for
        MySQL)
      * Timings of application files (including views) on a per line basis
      * Some meta data such as the request method, path, total duration, etc
      
      More tracking (e.g. Rugged or gitlab-shell timings) might be added in
      the future.
      
      Sherlock will replace any existing tools we have used so far (e.g.
      active_record_query_trace and rack-mini-profiler), hence the
      corresponding Gems have been removed from the Gemfile.
      
      Sherlock can be enabled by starting Rails as following:
      
          ENABLE_SHERLOCK=1 bundle exec rails s
      
      Recorded transactions can be found at `/sherlock/transactions`.
      dec3e4ce
  10. 08 Nov, 2015 1 commit
  11. 03 Nov, 2015 2 commits
  12. 26 Oct, 2015 2 commits
  13. 15 Oct, 2015 5 commits
  14. 14 Oct, 2015 1 commit
  15. 13 Oct, 2015 1 commit
  16. 11 Oct, 2015 1 commit
  17. 09 Oct, 2015 1 commit
  18. 08 Oct, 2015 7 commits
  19. 07 Oct, 2015 1 commit
    • Stan Hu's avatar
      Add directory feature button · 0ab6ca93
      Stan Hu authored
      Change "+" icon under "Files" section to have three options:
      
      * Create file
      * Upload file
      * New directory
      
      Upload file is no longer accessible from the "Create file" page.
      Users can now select a target branch in upload file as well.
      
      Closes #2799: Fixes a bug where file modes were overwritten after a commit
      
      Closes https://github.com/gitlabhq/gitlabhq/issues/8253: Existing files
      can no longer be overwritten in the "Create file" section.
      
      Closes #2557
      0ab6ca93