1
zcf0508 342 天前 via Android
cz
|
2
hez2010 342 天前
AI 规范,直接点击 "Add AI generated commit message":
![img]( https://learn.microsoft.com/en-us/visualstudio/releases/2022/media/17.9/17.9p1_generated_commit_messages.png) |
3
wangwenfan 342 天前 1
模版大概是在这样的:
<type>[optional scope]: <description> [optional body] [optional footer(s)] |
4
chesha1 342 天前
一般会加个开头吧 fix feat perf 之类的,但是这个好像也不是通行标准,有不少大厂的重要开源项目也不这么搞
|
5
Altale 342 天前 1
https://gist.github.com/ericavonb/3c79e5035567c8ef3267
https://www.conventionalcommits.org/en/v1.0.0/#specification 网上有很多,组里遵循不遵循与我无关,我都按照一定的风格写。 |
6
zjp 342 天前 via Android 1
约定式提交规范 https://www.conventionalcommits.org/zh-hans/v1.0.0/
根据自己项目改改 |
9
pengtdyd 342 天前
有,用的是 angularjs 的规范。咦,我好像发现 angularjs 本身不怎么样,但是它搞的很多规范很实用。。。。
|
10
AoEiuV020JP 342 天前
|
11
HenryHE 342 天前
有规范,毕竟每一个 commit 都是有原因的,所以会加上追踪信息。
|
12
kosilence 342 天前
[ticket-number][which server] project name: what changed
|
13
enchilada2020 342 天前 via Android
conventional commits+husky
|
14
charmToby 342 天前 1
有的,一般会加上任务 ID 或者 bug ID
|
15
dif 342 天前
用,和 angular 一样的规范。
|
16
doco 342 天前 1
update, update xxx, update...
|
17
jonty 342 天前
新增/修复(范围):描述
|
18
iovekkk 342 天前
有,要标记一下是 bug 修复还是功能开发
bug 修复要加上 bugid |
19
wu67 342 天前 1
(fix|update|change|feat|remove): (模块-子模块-页面-组建). 功能描述内容巴拉巴拉. 如果有 issue 就再加上井号+id, 其他非同一平台的不管
|
20
lshang 342 天前
同 6 楼,conventional commit
|
21
libook 342 天前
自己的项目绝大部分情况用 conventional commits ,别人的项目就 git log 看看过往提交风格,模仿着写,如果过往提交没有统一风格,就按照自己喜好写。
这东西跟项目管理情况是息息相关的。 比如开发一个本地特色的项目,也大可不必坚持用英文,只要能快速、准确、工整表达核心信息就可以了。 再比如写的可能不是程序,而是个文档项目,只是想用 Git 来做版本控制,那么可以自己找或设计一套适合文档的提交风格。 |
22
hugojtchen 342 天前
husky 做 git 钩子拦截
commitlint 做校验信息 git cz 填写内容 |
23
leroy20317 342 天前
commitlint + @commitlint/config-conventional
|
24
Jony4Fun 342 天前
<summary in 50 bytes>
<description in 72 bytes per line> |
25
crazyTanuki 342 天前
直接用哈士奇
|
26
superchijinpeng 342 天前
有规范,并且 commit message 也会链接 tapd
|
27
churchill 342 天前
规范不规范的我不知道,有的同学啊,提交倒是写了介绍,但点开一看,内容完全对不上
咱不如每次都写“a bunch of code”,还省事 |
28
ugu 342 天前
angular 规范 用 commitlint 约束
|
29
fpcxsun 342 天前
Description:
TraceNo: |
30
recying5566 342 天前
@hez2010 这是什么编辑器?
|
31
hez2010 342 天前
@recying5566 Visual Studio 2022 的 17.9 版本
|
32
roycestevie6761 342 天前
@hez2010 vs 越来越牛逼了
|
33
noyidoit 342 天前
@hez2010 https://imgur.com/a/oT6Ee8O 这两周 VSCode 直接把这个功能集成进 source control 了
|
34
nwu2Cv8OZ2MZMg39 342 天前
@noyidoit 是不是必须开通 GitHub Copilot?
|
35
noyidoit 342 天前
@VikingX 我原本以为是 Copilot 引入的,但你这么一说,我禁用插件测试了一下,发现是 "GitLens — Git supercharged v14.5.1",抱歉前面的信息造成了误解
|
36
god 342 天前 via iPad
## https://github.com/Nutlope/aicommits
aicommits --type conventional ## https://github.com/di-sukharev/opencommit oco ## https://github.com/zurawiki/gptcommit git commit -a ## https://github.com/appleboy/CodeGPT codegpt commit --preview --template_file your_file_path ## https://github.com/RomanHotsiy/commitgpt npx commitgpt |
37
levelworm 342 天前 via Android
我自己的规范:
commit 加 jira link ,简单说明,长度不超过 GitHub 标题的长度(其实他的标题可以很长,但是 commit 的时候好像有个固定长度,超了就自动进入 description 了)。 |
38
Conty 342 天前 via Android
所有人不允许直接 git push 。用自己写的系统做 code review 。review 里面要写明白细节。
|
39
netabare 342 天前 via Android 1
不知道 commit message 里面塞表情符号算不算规范的一部分
|
40
boomer995 342 天前
💥 feat(compiler): add 'comments' option
🐛 fix(compiler): fix some bug 📝 docs(compiler): add some docs 🌷 UI(compiler): better styles 🏰 chore(compiler): Made some changes to the scaffolding 🌐 locale(compiler): Made a small contribution to internationalization |
41
qloog 341 天前
要写的。方便日后 有 问题时查看 commit log , 如果是开源项目,便于日后自动生成 release note. 比如: https://github.com/go-eagle/eagle/releases
|
42
dayeye2006199 341 天前
没有,只要求交 PR 的时候 squash 成一个 commit ,然后信息需要有一定的描述性。
你说 PR 太大,没法放一个 commit ,那要重新考虑这个 PR 的任务范围划分 |
43
lazydog 341 天前
用 git 官方推荐的,但是我们组 99%的人胡逼写。
|
44
nwu2Cv8OZ2MZMg39 341 天前
@noyidoit 要用这个功能,是不是需要填入自己的 GPT APIKeys?还是说不需要额外购买 GPT 了?
|
45
KratosOmega 341 天前
有的,还有 git hook 脚本自动检查,不符合规范不给 commit
|
46
grumpyFish 341 天前
11.25......11.26........
update fix bugfix |
47
jeesk 341 天前
https://www.jenkins.io/changelog/ 参考 jenkins
|
48
zengguibo 341 天前
带上任务或是 bug 的 ticket id ,这样就好管理一些
|
49
Mocker1106 341 天前
|
50
mosanHZ 341 天前
看实际情况,假如你的 commit 除了你没人看,你怎么写都行,也没人会叼你
|
52
a632079 341 天前
|
53
alanhe421 341 天前
|
54
nodejsexpress 341 天前
自己的 git 也会写一些关键词,起码以后看起来知道这里干了什么。
|
55
Zchary 341 天前
feat: fix ** bug.
|
56
Alliot 341 天前
推荐 git commit -a
https://github.com/zurawiki/gptcommit |
58
GeekGao 341 天前
以前用 Fabricator 协作过,所以都是 fabricator 上的 comments
|
59
810244966 340 天前
跟着项目来,有些项目写的很细就写很细,有些新增功能就打个 1 ,修改就打个 fix ,我也跟着
|
60
lslqtz 340 天前
比较喜欢用 Module: Comment.
|