If I commit a change using the message "EZGC-7 #start this is a test of jira integration", the issue in JIRA named EZGC-7 is linked to that commit. But what if I messed up and meant to type EZGC-3, is there any way to undo the linkage and connect the commit to the correct issue? I can't seem to be able to do anything in JIRa other than view the commit
I spoke with Atlassian on this, there is no way to do this. They added this as a feature request.
Hello @whootang12 ,
Could you please share the Feature request link here that would be helpful.
Thank you!
Best Regards,
Srinivasa
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to stash your changes and get back to the state when you made the commit. Then you can use the commit amend to update the message.
http://blog.jacius.info/2008/6/22/git-tip-fix-a-mistake-in-a-previous-commit/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if your commit was the most recent commit then you can use:
git commit --amend -m "New commit message"
and put the correct commit message and Sync your BitBucket account with JIRA, and it will point to the correct JIRA issue after that, you can also use:
git rebase --interactive $parent_of_flawed_commit
If you want to fix several flawed commits, pass the parent of the oldest one of them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, I don't think I made my original question clear:
1. Make my change to the file
2. git add .
3. git commit -m "EZGC-15 issue is fixed"
4. git push
Now, I realize I should have made it "EZGC-14 issue is fixed", how do i update? The command you mentioned requires a merge and then a 2nd commit. If I'm not mistaken, the only time I will see the linked commit in JIRA is after I've pushed my changes, and thus that is the time I'm most likely to find my mistake. You are right that I can amend my message before pushing, but that doesn't help much.
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.