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?
To reference a commit, simply write its SHA-hash, and it'll automatically get turned into a link.
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.
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.
Unfortunately this is not possible currently
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With