I have some comments, and pushed them to my Forked repository and pulled request them too to the owner's repository (someone else).
Now I want remove these comments and remove them form pull request too.
I have some comments, and pushed them to my Forked repository and pulled request them too to the owner's repository (someone else).
Now I want remove these comments and remove them form pull request too.
If you do not want to see them just squash these commits.
Note that squashing a commit won't delete your commits but make multiple commits to one.
Edit
Try this command for squashing:
git rebase -i HEAD~4
Result:
pick 01d1124 Adding license
pick 6340aaa Moving license into its own file
pick ebfd367 Jekyll has become self-aware.
pick 30e0ccb Changed the tagline in the binary, too.
# Rebase 60709da..30e0ccb onto 60709da
#
# Commands:
# p, pick = use commit
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#
Just run below command to merge them together:
git reset --soft HEAD~14 && git commit
And after this, push it like below, that
-f
stands for force:git push -f
Result:


And
[Source: https://stackoverflow.com/a/5201642/421467 ]