提交后如何修改链接到我的提交的 jira 哈希票证 ID?
How can I modify jira hash ticket id linked to my Commit after commit?
我提交了 Jira link 问题,但我在问题 ID 中犯了一个错误,所以我想将其更改为正确的 Jira link 问题。
任何帮助
更新:
该问题的建议是更改最后的提交消息,以便使用“git commit --amend”实现,您可以更改问题的 ID 或整个消息。
抱歉问题误导
试试这个:
$ 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
我提交了 Jira link 问题,但我在问题 ID 中犯了一个错误,所以我想将其更改为正确的 Jira link 问题。 任何帮助
更新:
该问题的建议是更改最后的提交消息,以便使用“git commit --amend”实现,您可以更改问题的 ID 或整个消息。
抱歉问题误导
试试这个:
$ 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