How to make a gitlab changelog entry?

▼魔方 西西 提交于 2019-12-07 22:59:10

问题


I really, really, don't understand gitlab docs...

I am trying to understand how to make a god damn changelog entry, I have a changelog.md file, here are the gitlab docs about this: https://docs.gitlab.com/ce/development/changelog.html

But I don't understand where I have to write that, for example

$ bin/changelog 'Hey DZ, I added a feature to GitLab!'

It must be a terminal but where? And what's that '$'...


回答1:


It must be a terminal but where?

Where you have cloned the GitLab repo.
In that repo, you will find a bin/changelog script, which starts with #!/usr/bin/env ruby, meaning it will execute itself with ruby.

And $ is just a symbol for a shell prompt.




回答2:


The documentation you are reading is for the GitLab development, not for your own project or repository.

Like said in this very similar question :

The bin/changelog script is not a GitLab feature, and does not describe how to generate changelogs for repositories hosted on GitLab ]1



来源:https://stackoverflow.com/questions/46384937/how-to-make-a-gitlab-changelog-entry

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!