To check the difference between your forked repository and the original one, you can follow these steps:
git clone https://github.com/yourusername/yourforkedrepo.git
cd yourforkedrepo/
git remote add upstream https://github.com/originaluser/originalrepo.git
git fetch upstream
4. Check out your local branch that you want to compare to the original repository using the git checkout
command.
git checkout yourRepoBranch
5. Compare your local branch with the specific branch of the original repository that you want to compare with, using the git diff
command.
git diff upstream/originalRepoBranch
Store them in a file:
git diff upstream/originalRepoBranch >> diff.txt