diff --git a/app/models/repository.rb b/app/models/repository.rb index c05cfb271c70f8600f3a9c8eebc4f942070ebbd1..6246630300ca43c5d71b1c8120185be46bef1f4d 100644 --- a/app/models/repository.rb +++ b/app/models/repository.rb @@ -749,22 +749,32 @@ class Repository user, path, message, branch, author_email: nil, author_name: nil, source_branch: nil, source_project: project) - GitOperationService.new(user, self).with_branch( + if branch_exists?(branch) + # tree_entry is private + entry = raw_repository.send(:tree_entry, commit(branch), path) + + if entry + if entry[:type] == :blob + raise Gitlab::Git::Repository::InvalidBlobName.new( + "Directory already exists as a file") + else + raise Gitlab::Git::Repository::InvalidBlobName.new( + "Directory already exists") + end + end + end + + commit_file( + user, + "#{Gitlab::Git::PathHelper.normalize_path(path)}/.gitkeep", + '', + message, branch, + false, + author_email: author_email, + author_name: author_name, source_branch: source_branch, - source_project: source_project) do |ref| - options = { - commit: { - branch: ref, - message: message, - update_ref: false - } - } - - options.merge!(get_committer_and_author(user, email: author_email, name: author_name)) - - raw_repository.mkdir(path, options) - end + source_project: source_project) end # rubocop:enable Metrics/ParameterLists