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