No need to check if `repository_ref` is present

王权利请求将github/fork/zenati/patch-1合并到master

Created by: zenati

There is no need to check if repository_ref is present as:

@repository_ref = if repository_ref.present?
                    repository_ref
                  else
                    nil
                  end

is as same as doing:

@repository_ref = repository_ref

合并请求报告