Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checking issue task on GitHub using commit messages

It's rather easy to refer and close a GitHub issue by referring to it in a commit message and using specific words (i.e. closes):

This code change closes #123

As "closes #123" is being used in commit message it will automatically close issue #123 on GitHub.

But what if we had an issue with a task list? How can we manipulate these checkboxes using commit messages to avoid overhead work with GitHub? Is it possible?

like image 422
Robert Koritnik Avatar asked Oct 01 '14 11:10

Robert Koritnik


People also ask

How do you reference a commit in GitHub issues?

To reference a commit, simply write its SHA-hash, and it'll automatically get turned into a link.

How do I see all commit messages in git?

The most basic and powerful tool to do this is the git log command. By default, with no arguments, git log lists the commits made in that repository in reverse chronological order; that is, the most recent commits show up first.

How can I see current commit messages?

Viewing a list of the latest commits. If you want to see what's happened recently in your project, you can use git log . This command will output a list of the latest commits in chronological order, with the latest commit first.


1 Answers

Unfortunately this is not possible currently

like image 80
Brendan Forster Avatar answered Oct 02 '22 19:10

Brendan Forster