How to make your issues in GitHub more professional? [Labels feature]

How to make your issues in GitHub more professional? [Labels feature]

First, go to you issue path like https://github.com/gittestapi/training/issues and clicking "Labels" to add 3 labels "P0","P1","P2" like following:

Second, clicking "New Issue" and fill your issue title, content and select "P0" in right Labels as following:

Note:
most issue content should be contains "Environment,BuildNumber/ProductNumber,Reproduce Steps,Actual Result and Expect Result" if it is a bug.
If the issue is a task, it needn't these information in Content, just describe what the task it is as following:
Issue Title: [Task] Need to add a "Login" button in the right of Home Page
Issue Description:
Human Resource cost: 1 person
ETA: End of this week(10/20/2017)
1.we need to add a "Login" button in the right of Home page
2.When user click "Login" button, it will go to Login page
3.You need to implement a Login page for user to login our system, too.

Finally, you can see all your issues are very convenient and easy to filter and find in https://github.com/gittestapi/training/issues as following:







时间: 2024-10-29 10:37:59

How to make your issues in GitHub more professional? [Labels feature]的相关文章

帮设计师快速解决GIF图的锯齿问题

  设计师:怎么我设计的动态表情,上线以后周围多了这么多白色的噪点! 全部动态表情地址:http://isparta.github.io/compare/#15 前端:GIF本来就会有锯齿,跟我没关系呀. 设计师:太丑了,你不是万能的前端么?这个问题我用ps解决都是分分钟的事情呀! 前端: --(you can you up) 其实,在很久很久以前- 2004年,mozilla社区也意识到这个问题,所以当时他们提出了一种新的图片格式--APNG. APNG又叫动态PNG(Animated PNG

[翻译] IQAudioRecorderController

IQAudioRecorderController     IQAudioRecorderController is a drop-in universal library allows to record audio within the app with a nice User Interface. The Audio Recorder produced the .m4a file and returns the path via it's delegate methods. IQAudio

awesome-android

awesome-android https://github.com/snowdream/awesome-android Introduction android libs from github System requirements Android Notice If the lib is no longer being maintained,please do not add it here. How To Contribute Step 1. Add a Item as follows:

自然语言处理 textblog 安装使用

TextBlob是什么? TextBlob是一个用Python编写的开源的文本处理库.它可以用来执行很多自然语言处理的任务,比如,词性标注,名词性成分提取,情感分析,文本翻译,等等.你可以在官方文档阅读TextBlog的所有特性. github 地址:https://github.com/sloria/TextBlob/ 文档地址:https://textblob.readthedocs.io/en/dev/ 为什么我要关心TextBlob? 我学习TextBlob的原因如下: 我想开发需要进行

详解PHP的Yii框架中扩展的安装与使用_php技巧

扩展是专门设计的在 Yii 应用中随时可拿来使用的, 并可重发布的软件包.例如, yiisoft/yii2-debug 扩展在你的应用的每个页面底部添加一个方便用于调试的工具栏, 帮助你简单地抓取页面生成的情况. 你可以使用扩展来加速你的开发过程. 信息:本文中我们使用的术语 "扩展" 特指 Yii 软件包.而用术语 "软件包" 和 "库" 指代非 Yii 专用的通常意义上的软件包.使用扩展 要使用扩展,你要先安装它.大多数扩展以 Compose

从零开始学YII2框架(六)高级应用程序模板_php实例

高级应用程序模板 这个模板用在大型的团队开发项目中,而且后台从前台独立分离出来以便于部署在多个服务器中.由于YIi2.0的一些新的特性,这个程序模板的功能要更深一点.提供了基本的数据库的支持,注册.密码找回等功能. 安装 可以通过Composer来安装 如果没有安装Composer,先安装 curl -s http://getcomposer.org/installer | php 然后用如下命令来获取 php composer.phar create-project --prefer-dist

Node.js 包管理器 ied

ied 详细介绍 ied 是另一个 Node.js 包管理器,类似 npm,但是比 npm 快! 主要特性: 快速,完全并发安装 正确解决依赖 支持 semver 正确处理 devDependencies 生成一个平滑的 node_modules 目录 快速缓存 与 npm registry 交互 包没有全局命名空间 允许你在同一个包a require 多个版本 通过进程条可视化指示器进程 遵循你的全局配置 提供有用工具集,比如 ping, config, ls 支持私有 registries

nodeJs内存泄漏问题详解_node.js

之前一次偶然机会发现,react 在server渲染时,当NODE_ENV != production时,会导致内存泄漏.具体issues: https://github.com/facebook/react/issues/7406 .随着node,react同构等技术地广泛运用,node端内存泄漏等问题应该引起我们的重视.为什么node容易出现内存泄漏以及出现之后应该如何排查,下面通过一个简单的介绍以及例子来说明. 首先,node是基于v8引擎基础上,其内存管理方式与v8一致.下面简单介绍v8

Android ActionBar 作为导航条的一个Bug

在Android兼容开发包(Support Package)的示例中,演示了ViewPager和ActionBar导航条一起使用的一个示例,该示例的代码目录位于: android-sdk-windows\extras\android\support\v13\samples\Support13Demos 目录中的 /Support13Demos/src/com/example/android/supportv13/app/ActionBarTabsPager.java Java类中. 运行界面如下