Commit 9bd8aac1 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

newline on every sentence + fixes

parent 58ff82c8
# Git Hooks # Git Hooks
Sometimes you need additional control over pushes to your repository. GitLab already has protected branches. But there are cases when you need some specific rules like preventing git tag removal or special format of commit messages. And instead of manually writing shell script files directly into git repository GitLab Enterprise Edition offers a user-friendly interface for such cases. Sometimes you need additional control over pushes to your repository.
GitLab already has protected branches.
But there are cases when you need some specific rules like preventing git tag removal or special format of commit messages.
And instead of manually writing shell script files directly into git repository GitLab Enterprise Edition offers a user-friendly interface for such cases.
Git hooks are defined per project so you can have different rules applied for different projects depends on your needs. Git hooks settings you can find at Project settings -> Git Hooks page. Git hooks are defined per project so you can have different rules applied for different projects depends on your needs.
Git hooks settings you can find at Project settings -> Git Hooks page.
## How to use ## How to use
Let's assume you have next requirements for workflow: Let's assume you have the following requirements for your workflow:
* every commit should reference to reference JIRA issue. Ex. `Refactored css. Fixes JIRA-123. ` * every commit should reference a reference JIRA issue. For example: `Refactored css. Fixes JIRA-123. `
* users should not be able to remove git tags over `git push` * users should not be able to remove git tags with `git push`
All you need to do is write simple regular expression that requires mention of JIRA issue in commit message.
It can be something like this `/JIRA\-\d+/`.
Just paste regular expression into commit message textfield(without start and ending slash) and save changes.
See screenshot below:
All you need to do is write simple regular expression that requires mention of JIRA issue in commit message. It can be something like this `/JIRA\-\d+/`. Just paste regular expression into commit message textfield(without start and ending slash) and save changes. See screenshot below:
![screenshot](git_hooks.png) ![screenshot](git_hooks.png)
Now when user tries to push commit like `Bugfix` - his push will be declined. Now when a user tries to push a commit like `Bugfix` - their push will be declined.
And pushing commit with message like `Bugfix according to JIRA-123` will be accepted. And pushing commit with message like `Bugfix according to JIRA-123` will be accepted.
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment