사용자 관리 Rake 작업
GitLab은 사용자 관리를 위한 Rake 작업을 제공합니다. 관리자는 관리 영역을 통해 사용자를 관리 할 수도 있습니다. 사용자를 모든 프로젝트에 개발자로 추가 # 사용자를 모든 프로젝트에 개발자로 추가하려면 다음을 실행하세요: # omnibus-gitlab sudo gitlab-rake gitlab:import:user_to_projects[username@domain.tld] # installation from source bundle exec rake gitlab:import:user_to_projects[username@domain.tld] RAILS_ENV=production 모든 사용자를 모든 프로젝트에 추가 # 모든 사용자를 모든 프로젝트에 추가하려면 다음을 실행하세요: # omnibus-gitlab sudo gitlab-rake gitlab:import:all_users_to_all_projects # installation from source bundle exec
