Go to file
Ciro Santilli def67592b4 Say issues are accepted at both gitlab and github. 2014-04-11 10:38:20 +02:00
app Fix download link for huge MR diffs 2014-04-10 13:45:02 +03:00
bin
config Add OmniAuth Documentation 2014-04-10 07:31:54 -05:00
db Fix rake db:seed_fu ENV=development 2014-04-09 11:02:45 +09:00
doc Merge pull request #6741 from dblessing/omniauth_docs 2014-04-10 14:36:40 +02:00
features Merge branch 'wiki-refactoring' into 'master' 2014-04-09 17:48:46 +00:00
lib Merge branch 'ensure_satellite_exists' into 'master' 2014-04-09 17:50:26 +00:00
log
public Add icon for iOS home screen 2014-04-05 11:13:38 +08:00
script Use the new Sidekiq syntax to specify queues 2014-04-01 16:46:27 +02:00
spec Merge branch 'ensure_default_fields' into 'master' 2014-04-10 07:20:45 +00:00
tmp Make sure important directories exist in git 2014-03-30 22:45:28 -04:00
vendor
.foreman
.gitignore
.rspec
.simplecov
.travis.yml
CHANGELOG Fix download link for huge MR diffs 2014-04-10 13:45:02 +03:00
CONTRIBUTING.md Say issues are accepted at both gitlab and github. 2014-04-11 10:38:20 +02:00
Gemfile Update grape-entity 2014-04-08 16:02:53 +03:00
Gemfile.lock Update grape-entity 2014-04-08 16:02:53 +03:00
Guardfile Use ruby 1.9 hash syntax in Guardfile 2014-04-01 13:08:16 +03:00
LICENSE
MAINTENANCE.md
PROCESS.md Typo fix in process.md 2014-04-09 11:38:33 +02:00
Procfile Fix procfile for developers 2014-04-08 14:38:57 +03:00
README.md Remove the vmi's. 2014-04-10 09:23:10 +02:00
Rakefile
VERSION Time for 6.8.0pre 2014-03-26 09:50:18 +02:00
config.ru

README.md

GitLab: self hosted Git management software

logo

animated-screenshots

Gitlab is open source software to collaborate on code

  • Manage git repositories with fine grained access controls that keep your code secure
  • Perform code reviews and enhance collaboration with merge requests
  • Each project can also have an issue tracker and a wiki
  • Used by more than 50,000 organizations, GitLab is the most popular solution to manage git repositories on-premises
  • Completely free and open source (MIT Expat license)
  • Powered by Ruby on Rails

Code status

  • build status on ci.gitlab.org (master branch)

  • Code Climate

  • Coverage Status

Resources

Requirements

  • Ubuntu/Debian/CentOS/RHEL**
  • ruby 1.9.3+
  • git 1.7.10+
  • redis 2.0+
  • MySQL or PostgreSQL

** More details are in the requirements doc

Installation

Official installation methods

Third party one-click installers

Unofficial installation methods

  • GitLab recipes repository with unofficial guides for using GitLab with different software (operating systems, webservers, etc.) than the official version.

  • Installation guides public wiki with unofficial guides to install GitLab on different operating systems.

New versions and upgrading

Since 2011 GitLab is released on the 22nd of every month. Every new release includes an upgrade guide and new features are detailed in the Changelog.

It is recommended to follow a monthly upgrade schedule. Security releases come out when needed. For more information about the release process see the documentation for monthly and security releases.

Run in production mode

The Installation guide contains instructions on how to download an init script and run it automatically on boot. You can also start the init script manually:

sudo service gitlab start

or by directly calling the script

 sudo /etc/init.d/gitlab start

Run in development mode

Copy the example development unicorn configuration file

cp config/unicorn.rb.example.development config/unicorn.rb

Start it with Foreman

bundle exec foreman start -p 3000

or start each component separately

bundle exec rails s
script/background_jobs start

Run the tests

  • Run all tests

      bundle exec rake test
    
  • RSpec unit and functional tests

      All RSpec tests: bundle exec rake spec
    
      Single RSpec file: bundle exec rspec spec/controllers/commit_controller_spec.rb
    
  • Spinach integration tests

      All Spinach tests: bundle exec rake spinach
    
      Single Spinach test: bundle exec spinach features/project/issues/milestones.feature
    

Documentation

All documentation can be found on doc.gitlab.com/ce/.

Getting help

Please see Getting help for GitLab on our website for the many options to get help.