I'm trying to understand how this works
For I create an issue in BitBucket Cloud, and it has issue #3 with status of open.
I then create a branch
git checkout -b my-issue-3-branch
make some edits and then I make a commit with
git commit -a
and add the comment at the top with
Updates for fix issue #3
I then push the code to remote with
git push -u origin my-issue-3-branch
I can see the commit for the branch, and I can see #3 is linked to issue #3.
According to the documentation, this should transition the issue to a Resolved state and add a comment that matched the commit.
But it doesn't.
Wat am I missing? (It's possible I've skipped a step, but I've donethis a fwe times with commits, and I can't get issues to transition.
Well, this is still occurring for me. I can see in the commit comment that Bitbucket has linked #11 to the correct issue. But it doesn't transition.
Kinda annoying.
I have the same problem.
Scenario 1:
Bitbucket > Issues tracker (in a repository on which I have Write access)
Push with "close issue #" in commit > Creates commit with linked issue in Bitbucket > Does NOT add comment to the issue > Does NOT close the issue
Scenario 2:
Bitbucket > Issues tracker (in a repository on which I am Admin)
Push with "close issue #" in commit > Creates commit with linked issue in Bitbucket > Does add comment to the issue > Does close the issue
Anyone? ... Anyone?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, I'm the admin for my repo, so I'm not sure what is different between what we're seeing.
I can't find a project on https://jira.atlassian.com/ to look if this has been reported.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just noticed that the difference appears to be more related to whether the repository was forked or not. In my scenario 1, the repository is forked (and commit commands do not work). In my scenario 2, the repository is not forked (and commit commands do work).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I too have this problem. The issue is never transitioned to a Resolved state. It works for another account (and repository).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jim,
It appears you didn't put the transition in your push. The format should be as follows according to Using Smart Commits in Bitbucket Server:
<ignored text> ISSUE_KEY <ignored text> #<transition_name> <comment_string>
The example from is as follows:
JRA-090 #close Fixed this today
Cheers,
Branden
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Brandon,
Thanks, but the page you linked to is when JIRA is linked to BitBucket Cloud and you're using Smart Commits, which is a different feature.
I don't have JIRA, I only have a BitBucket iIssue I'm trying to transition with a git commit as documented in
Jim.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What insane person formats commits like
JRA-090 #close Fixed this today
Well, even if I did, still doesn't work. The issue is linked, but nothing is transitioned to DONE.
I'd much rather have this format work:
Fixed this today
Closes JRA-090
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.