I forked a GitHub repository and made some changes on my fork and submited a pull request but the owners of the original GitHub repository asked for some changes which they asked me for in the pull request. I assumed that adding additional changes to my fork will cause them to show up in the current pull request but to my surprise I can't see my changes in the pull request.
This is what I did after generating the original pull request:
- made code changes
- add the files 1git add -A`
- commit the files
git commit -m "these are my suggested changes in pull request"
- submit my changes with
git push
I can see changes on my own fork but I don't understand why I can't see any changes in the pull request.
Does anyone know what I need to do for my changes to show up in the current pull request?
I'd really appreciate your help.