partial PR merge
Hi @Rajesh Talathoti and welcome to the community!
The most likely reason is that another commit on the destination branch undid the changes you introduced with the PR.
If you use the following command in a clone of your repo you will get all commits that changed this file and the changes each commit introduced:
git log --full-history --all -p -m -- file.txt
You can use it to inspect the commits that changed this file (replace file.txt with the file path and name).
Please execute git fetch on your clone before running this command, to ensure your clone has all the updated refs from the remote repo.
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.