这个单词主要表示什么场景?
1
realrojeralone 2022-08-05 10:47:56 +08:00
琐碎操作,对代码功能没有任何影响的操作,比如删除了几行无用的代码、注释等清理操作
|
2
dabney777 2022-08-05 10:48:00 +08:00 3
改了点代码但是又没什么影响的时候,参考下 semantic commit message:
https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716 |
3
GreatAuk 2022-08-05 10:48:04 +08:00 24
💍 test: Adding missing tests
🎸 feat: A new feature 🐛 fix: A bug fix 🤖 chore: Build process or auxiliary tool changes ✏️ docs: Documentation only changes 💡 refactor: A code change that neither fixes a bug or adds a feature 💄 style: Markup, white-space, formatting, missing semi-colons... 反正我是不知道选哪个的时候,我就 chore 了 |
4
dcalsky 2022-08-05 10:48:21 +08:00
chore: 不影响生产代码的改动,比如改了 webpack.config.js, dockerfile, makefile, go mod, package.json, .gitignore.
|
5
Ruabc 2022-08-05 10:48:36 +08:00
杂事、琐事,意指其他。不是 feat 、test 、fix 、doc 、performance 等。
|
6
luffy OP 原来如此。
如果单纯的看中文翻译,确实很难理解到具体的表示场景 |
7
zhuweiyou 2022-08-05 11:23:54 +08:00
不做开源项目 没必要那么复杂
|
8
yuhangch 2022-08-05 11:29:53 +08:00
所以 chore 是哪个词或者 哪几个词呢?
|
9
wenzichel 2022-08-05 11:31:53 +08:00
流程上或者配置里的一些改动
|
11
Vaspike 2022-08-05 12:01:39 +08:00 4
|
12
runningowl 2022-08-05 12:03:16 +08:00
|
13
christin 2022-08-05 12:30:04 +08:00 via iPhone
|
14
sytone 2022-08-05 12:41:12 +08:00
Oxford Languages 中的的释义:
a routine task, especially a household one. 原意指家务活,在 git commit 里指的是一些琐碎的且没有明确分类的事情吧。 |
16
masker 2022-08-05 12:50:03 +08:00 via Android
git commit 一些规范吧
|
19
pikesui 2022-08-05 15:26:57 +08:00
为什么要有 gitmoji 这种东西
|
20
Vaspike 2022-08-05 15:33:19 +08:00
@sunbreak #18
是的 Jetbrains 的 IDE 都可以用这个插件: https://plugins.jetbrains.com/plugin/9861-git-commit-template |
22
SirCarol 2022-08-05 18:48:09 +08:00
![git 提交类型.jpeg]( https://s2.loli.net/2022/08/05/g48WFzlEdnbeIiA.jpg)
|
24
dianso 2022-08-06 09:01:21 +08:00
|