Link to problem from commit message in gitlab

Is it possible to link to a problem in Gitlab from a commit message? I did not find anything on the Internet.

+15
source share
1 answer

There should be a way to refer to the GitLab problem from the commit message, simply using #xx (problem identifier).
Consider the " Default Closing Pattern Value "

For example, the following commit message:

Awesome commit message

Fix #20, Fixes #21 and Closes group/otherproject#22.
This commit is also related to #17 and fixes #18, #19
and https://gitlab.example.com/group/otherproject/issues/23.

# 18, # 19, # 20 # 21 , , # 22 # 23 group/otherproject. # 17 , . , git commit -m.

" : GitLab "

.
, .

  • : #123
  • MR !123
  • $123

Pierreb :

, , , Gitlab.
, , , .
- :

This is related with commit 7as7b101

() :


Fr0zenFyr :

, , Related to #78 and #93

+30

Source: https://habr.com/ru/post/1682175/


All Articles