英文:
In a git or github repository is there a way to notify or set a status that you are working on an issue?
问题
在Git或GitHub中,你可以将一个问题分配给特定的人,但是否有一种方法可以定义你正在处理特定的问题呢?
英文:
I know you can assign an issue to a specific person but is there a way to define in git or github that you are working on a specific issue?
答案1
得分: 1
Git是一个没有“问题”或“工单”概念的版本控制系统。
GitHub是一个在线服务,你可以在其中托管基于Git的存储库,GitHub包括一个名为“GitHub Issues”的问题跟踪器。
但你也可以使用不同的问题跟踪器,比如Jira或Bugzilla。
在GitHub Issues(以及大多数其他问题跟踪系统中),有一个“assignee”的概念,你可以使用它来跟踪谁在处理什么工作。
英文:
You have to differentiate between git and GitHub here.
Git is just a version control system with no concept of "issues" or "tickets".
GitHub is an online service where you can host your git-based repositories and GitHub happens to include an issue tracker called "GitHub Issues".
But you could also use a different issue tracker, like Jira or Bugzilla.
In GitHub Issues (and most other issue tracking systems) there is the concept of an "assignee" which you can use to track who is working on what.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论