How to remove comments from Forked repository and Pull request on Owner's repository

359 Views Asked by At

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.

My repository:
enter image description here

Owner's repository:
enter image description here

2

There are 2 best solutions below

0
On BEST ANSWER

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:
enter image description here
And
enter image description here

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

2
On
  • For first image - It looks like commit messages to me

If you do not want to see them just squash these commits.

  • For 2nd Image - You can't delete the pull request but you can close pull request by doing this and if you do not to delete pull request the squash commit would be better idea.

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.
#