# File lib/gitlab/client/repository_files.rb, line 34
    def create_file(project, path, branch, content, commit_message)
      post("/projects/#{project}/repository/files", body: {
        file_path: path,
        branch_name: branch,
        commit_message: commit_message
      }.merge(encoded_content_attributes(content)))
    end