사용자 관리 Rake 작업
사용자 관리 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 rake gitlab:import:all_users_to_all_projects RAILS_ENV=production 관리자는 관리자 권한으로 추가되고, 다른 모든 사용자는 개발자 권한으로 추가됩니다. 사용자를 모든 그룹에 개발자로 추가 # 사용자를 모든 그룹에 개발자로 추가하려면 다음을 실행하세요: # omnibus-gitlab sudo gitlab-rake gitlab:import:user_to_groups[username@domain.tld] # installation from source bundle exec rake gitlab:import:user_to_groups[username@domain.tld] RAILS_ENV=production 모든 사용자를 모든 그룹에 추가 # 모든 사용자를 모든 그룹에 추가하려면 다음을 실행하세요: # omnibus-gitlab sudo gitlab-rake gitlab:import:all_users_to_all_groups # installation from source bundle exec rake gitlab:import:all_users_to_all_groups RAILS_ENV=production 관리자는 소유자 권한으로 추가되어 그룹에 추가 사용자를 추가할 수 있습니다. 특정 그룹의 모든 사용자를 project_limit:0 및 can_create_group: false 로 업데이트 # 특정 그룹의 모든 사용자를 project_limit: 0 및 can_create_group: false 로 업데이트하려면 다음을 실행하세요: # omnibus-gitlab sudo gitlab-rake gitlab:user_management:disable_project_and_group_creation\[:group_id\] # installation from source bundle exec rake gitlab:user_management:disable_project_and_group_creation\[:group_i
