... | ... | @@ -6,7 +6,7 @@ |
|
|
|
|
|
每次在提交消息中提及 Issue 时,您都会在开发工作流的两个阶段之间建立一种关系: Issue 本身以及与该 Issue 相关的第一次提交。
|
|
|
|
|
|
如果 Issue 和您要提交的代码都在同一项目中,则只需在提交消息中添加`#xxx` ,其中`xxx`是 Issue 编号。如果它们不在同一项目中,则可以将完整的 URL 添加到问题中( `https://codechina.csdn.net/<username>/<projectname>/issues/<xxx>` )。
|
|
|
如果 Issue 和您要提交的代码都在同一项目中,则只需在提交消息中添加`#xxx` ,其中`xxx`是 Issue 编号。如果它们不在同一项目中,则可以将完整的 URL 添加到问题中( `https://gitcode.net/<username>/<projectname>/issues/<xxx>` )。
|
|
|
|
|
|
```markdown
|
|
|
git commit -m "this is my commit message. Ref #xxx"
|
... | ... | @@ -15,7 +15,7 @@ git commit -m "this is my commit message. Ref #xxx" |
|
|
或
|
|
|
|
|
|
```markdown
|
|
|
git commit -m "this is my commit message. Related to https://codechina.csdn.net/<username>/<projectname>/issues/<xxx>"
|
|
|
git commit -m "this is my commit message. Related to https://gitcode.net/<username>/<projectname>/issues/<xxx>"
|
|
|
```
|
|
|
|
|
|
**注意:**将您的第一次提交与您的 Issue 相关联,对于分析跟踪您的过程将非常重要。它将测量该 Issue 从计划到实施所花费的时间,即从创建 Issue 到进行第一次提交之间的时间。
|
... | ... | |