프로젝트 임포트 및 익스포트 문제 해결
임포트 또는 익스포트에 문제가 있는 경우 Rake 태스크를 사용하여 디버그 모드를 활성화하세요: # Import IMPORT_DEBUG=true gitlab-rake "gitlab:import_export:import[root, group/subgroup, testingprojectimport, /path/to/file_to_import.tar.gz]" # Export EXPORT_DEBUG=true gitlab-rake "gitlab:import_export:export[root, group/subgroup, projectnametoexport, /tmp/export_file.tar.gz]" 그런 다음 특정 오류 메시지에 대한 다음 세부 정보를 검토하세요. Exception: undefined method 'name' for nil:NilClass # username 이 올바르지 않습니다. Exception: undefined method 'full_path' for nil:Nil
