Commit 1a48c51c authored by Marcin Sedlak-Jakubowski's avatar Marcin Sedlak-Jakubowski

Merge branch 'jplsek-master-patch-36790' into 'master'

Add short hand for linking to separate project

See merge request gitlab-org/gitlab!68607
parents bd036141 7b09089c
...@@ -19,14 +19,20 @@ issue itself and the first commit related to that issue. ...@@ -19,14 +19,20 @@ issue itself and the first commit related to that issue.
If the issue and the code you're committing are both in the same project, If the issue and the code you're committing are both in the same project,
add `#xxx` to the commit message, where `xxx` is the issue number. add `#xxx` to the commit message, where `xxx` is the issue number.
If they are not in the same project, you can add the full URL to the issue
(`https://gitlab.com/<username>/<projectname>/issues/<xxx>`).
```shell ```shell
git commit -m "this is my commit message. Ref #xxx" git commit -m "this is my commit message. Ref #xxx"
``` ```
or If they are in different projects, but in the same group,
add `projectname#xxx` to the commit message.
```shell
git commit -m "this is my commit message. Ref projectname#xxx"
```
If they are not in the same group, you can add the full URL to the issue
(`https://gitlab.com/<username>/<projectname>/issues/<xxx>`).
```shell ```shell
git commit -m "this is my commit message. Related to https://gitlab.com/<username>/<projectname>/issues/<xxx>" git commit -m "this is my commit message. Related to https://gitlab.com/<username>/<projectname>/issues/<xxx>"
......
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