提交后如何修改链接到我的提交的JIRA链接?

时间:2017-01-05 11:05:09

标签: git jira issue-tracking

我使用Jira链接问题进行了提交,但我在问题的数字ID中犯了一个错误,所以我想将其更改为正确的Jira链接问题。 任何帮助

1 个答案:

答案 0 :(得分:1)

试试这个:

$ git reset --soft HEAD~1         # undo last commit
# fix the link here

$ git add .
$ git commit -m 'Fix jira link'      
$ git push -f origin HEAD         # (-f) force push, replace the remote history by local