Remove the commit link on GitHub?

You can specify a problem from another problem:

reference #xxx 

How can I remove a link from a commit problem? (like this one :)

enter image description here

+4
source share
1 answer

Of course, but this requires rewriting the commit history, and this is considered bad behavior in a public repo.

But, if you decide, just edit the commit and press

 git commit --amend git push --force origin master 
-3
source

All Articles