GitHub中的图形提交消息

时间:2012-03-16 17:46:29

标签: github git-commit

如何在git commit消息中添加图形/图像(推送到Github)?

3 个答案:

答案 0 :(得分:80)

以下是要在提交消息中输入以获取这些图标的代码列表:

<强> Emoji cheat sheet

例如,要获得this commit message

Release 2.0.1 :gem::star2: (example commit message with emoji)

输入Release 2.0.1 :gem::star2:

如果您在GitHub上看到要使用的图标,请将鼠标悬停在该图标上,工具提示会告诉您该图标的代码。或者复制并粘贴提交消息以将图标转换为其代码。

该备忘单网站是开源的 - 这里是its code

警告:你不能将任意图像放入提交消息 - 这些代码只能在GitHub上工作,因为GitHub在该列表上实现了表情符号。当然,这取决于您用来显示表情符号或链接URL的Git界面--Git的命令行界面可能不会执行其中任何一种。

答案 1 :(得分:4)

将命令行中的表情符号写为:表情符号笑脸和书籍

     git commit -m ":smile: your message"      
     git commit -m ":books: documentation is completed"

答案 2 :(得分:2)

在我的项目中,我主要将表情符号用于:初始提交、新功能、错误修复、文档和代码重构。这就是我创建它们的方式

git commit -m ":tada: for initial commit"
git commit -m ":sparkles: for a new feature"
git commit -m ":bug: for a bug fix"
git commit -m ":books: for documentation"
git commit -m ":hammer: for code refactoring"

enter image description here enter image description here enter image description here enter image description here enter image description here

这是您可以使用的 list 其他有用的表情符号