summaryrefslogtreecommitdiff
path: root/app/services/validate_new_branch_service.rb
Commit message (Collapse)AuthorAgeFilesLines
* Enable frozen string in apps/uploaders/*.rbgfyoung2018-07-161-0/+2
| | | | Partially addresses #47424.
* Don't use Gitlab::Utils.nlbr in Gitlab::GitJacob Vosmaer (GitLab)2018-06-111-1/+1
|
* Move GitHooksService to Gitlab::GitJacob Vosmaer2017-08-231-1/+1
|
* Refactor changing files in web UIDouwe Maan2017-04-201-4/+1
|
* Add `source_branch` option for various git operationsLin Jen-Shin2016-11-151-0/+22
If `source_branch` option is passed, and target branch cannot be found, `Repository#update_branch_with_hooks` would try to create a new branch from `source_branch`. This way, we could make changes in the new branch while only firing the hooks once for the changes. Previously, we can only create a new branch first then make changes to the new branch, firing hooks twice. This behaviour is bad for CI. Fixes #7237